16 input默认样式清除

<!DOCTYPE html>
<html lang="zh-CN">
<head>
    <meta charset="UTF-8">
    <title>input默认清除样式</title>
        <style>
        input{
            border:0; /*清除边框*/
            outline: 0; /*清除轮廓*/
            border: 1px solid #333333; /*设置边框为为1px,实体框,颜色为#33333*/
            weight:280px;
            height: 40px;
            border-radius: 40px;/*设置边框圆角直径*/
            padding-left: 20px; /*设置padding的左区域为20px,也就是说内容显示区域向右移动20px*/
        }
    </style>
</head>
<body>
    <div>
        <form action="">
            <input type="text">
        </form>
    </div>
</body>
</html>
原文地址:https://www.cnblogs.com/mayugang/p/10251350.html