码迷,mamicode.com
首页 > 其他好文 > 详细

input text 字体的影响

时间:2014-10-21 01:01:40      阅读:286      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   ar   sp   div   2014   on   

字体对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>

效果:

bubuko.com,布布扣

 

<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>

效果:

bubuko.com,布布扣

 

 

一个看起来还行的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>

 

input text 字体的影响

标签:style   blog   http   color   ar   sp   div   2014   on   

原文地址:http://www.cnblogs.com/ghgyj/p/4039289.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!