所需输入和占位符的样式
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了所需输入和占位符的样式相关的知识,希望对你有一定的参考价值。
CSS3 Normalize for Required and Placeholder...
/* non-style for "Required" inputs in Firefox, Chrome and Opera */ input:required, textarea:required { -moz-box-shadow:none; -webkit-box-shadow:none; -o-box-shadow:none; box-shadow:none; outline:none 0; } /* Styling "Placeholder" input in Chrome and Safari */ ::-webkit-input-placeholder { color:#333; font-style:italic;} /* Styling "Placeholder" input in Firefox */ input:-moz-placeholder, textarea:-moz-placeholder { color:#333; font-style:italic; }
以上是关于所需输入和占位符的样式的主要内容,如果未能解决你的问题,请参考以下文章