Styling Password Fields in CSS

后端 未结 4 1114
一个人的身影
一个人的身影 2020-11-30 06:25

I\'m experiencing a minor issue with fonts in my stylesheet.

This is my CSS:

body
{
  ...
  font: normal 62.5% \"Lucida Sans Unicode\",sans-serif;
}
         


        
4条回答
  •  渐次进展
    2020-11-30 06:50

    The best I can find is to set input[type="password"] {font:small-caption;font-size:16px}

    Demo:

    input {
      font: small-caption;
      font-size: 16px;
    }

提交回复
热议问题