自己实现一些JQuery插件-----------------------------------(五)

使用CSS3美化表单

 

<!DOCTYPE html>
<head>
<meta charset="utf-8" />
<title>Input Demo</title>
<style type="text/css">
INPUT {
    border-left: #fff 1px solid;
    border-top: #fff 1px solid;
    border-right: #fff 1px solid;
    border-bottom: #fff 1px solid;
    margin: 0px 0px 15px 10px;
    padding-left: 10px;
    background: #ccc;
    float: left;
    font-size: 1em;
    line-height: 1.5em;
    height: 20px;
    text-align: left;
}
</style>

</head>
<body>
    <input type="text"></input>
</body>
</html>

 

posted @ 2013-11-15 21:11  强子~Developer  阅读(95)  评论(0编辑  收藏  举报