美文网首页
css_3 form

css_3 form

作者: basicGeek | 来源:发表于2018-11-16 14:45 被阅读0次

输入框去掉边框

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
  <style type="text/css">
      .username{
          border:0 none;// 去掉边框
        outline-style: none;//去掉轮廓线
      }
  </style>
</head>
<body>
mingzi:<input type="text" class="username">
mingzi:<input type="text" class="username111">

</body>
</html>

相关文章