html – 占位符文本格式

前端之家收集整理的这篇文章主要介绍了html – 占位符文本格式前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有以下代码.
<input class="domain" id="Domain" name="Domain" placeholder="Domain" required="required" type="text" value="" />

我试图格式化占位符文本,因为它在文本框中显得非常小,我将如何进行此操作?

解决方法

在你的CSS中尝试这个
/*For Webkit browsers (Chrome,Safari) */

input::-webkit-input-placeholder {
   /* Your style here e.g. font size,color etc */
}

/* For Mozilla Firefox */

input:-moz-placeholder {
    /* Your style here e.g. font size,color etc */
}
原文链接:https://www.f2er.com/html/227834.html

猜你在找的HTML相关文章