码迷,mamicode.com
首页 > Web开发 > 详细

漂亮的圆角文本框 CSS3实现

时间:2014-12-15 18:46:28      阅读:150      评论:0      收藏:0      [点我收藏+]

标签:style   http   ar   sp   on   bs   ad   html   as   

进入人人小站发现了个挺好看的文本框,圆角的,原来是利用了CSS3的效果,不过暂时只有IE9 和FF浏览器支持。

 

<html xmlns="http://www.w3.org/1999/xhtml">

<head>
    <title></title>
    <style>
        .input-text
        {
            border: 1px solid #C3CED9;
            border-radius: 5px 5px 5px 5px;
            font-size: 14px;
            height: 31px;
            line-height: 31px;
            margin-right: 10px;
            padding: 0;
            width: 327px;
        }
    </style>
</head>
<body>
    <input type="text" id="1" class="input-text" />
</body>
</html>

漂亮的圆角文本框 CSS3实现

标签:style   http   ar   sp   on   bs   ad   html   as   

原文地址:http://www.cnblogs.com/xiaochao12345/p/4165195.html

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