input text 字体的影响

|▌冷眼眸甩不掉的悲伤 提交于 2020-02-03 09:22:18

字体对input的影响

<html>
<head>
<meta charset="UTF-8">
</head>
<style type="text/css">
input{
    background: #EAEEF1;
    border: 2px solid #EAEEF1;
    color: #666666;
    font-family: 'Open Sans', sans-serif;
}
</style>
    <body>
        <input type="text"/>
    </body>
</html>

效果:

 

<html>
<head>
<meta charset="UTF-8">
</head>
<style type="text/css">
input{
    background: #EAEEF1;
    border: 2px solid #EAEEF1;
    color: #666666;
    font-family: "华文行楷";

}
</style>
    <body>
        <input type="text"/>
    </body>
</html>

效果:

 

 

一个看起来还行的input输入框

<html>
<head>
<meta charset="UTF-8">
</head>
<style type="text/css">
input{
    background: #EAEEF1;
    border: 2px solid #EAEEF1;
    color: #666666;
    font-size: 1.1em;
    font-family: 'Open Sans', sans-serif;

}
input:hover {
    background: #fff;
    border: 2px solid #609EC3;
    outline: none;
}
</style>
    <body>
        <input type="text"/>
    </body>
</html>

 

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!