首頁  >  文章  >  web前端  >  css登入介面美化

css登入介面美化

墨辰丷
墨辰丷原創
2018-05-11 16:08:4711155瀏覽

本篇文章主要介紹如何用css美化網站登入介面,需要的小夥伴參考下。

程式碼如下:

<html>
  <head>
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
      <title>美化登录</title>
      <style type="text/css">
          *{margin:0;padding:0;}/*去掉页面样式*/
          body{color:white;}
          .content{
              background-color:pink;
             position:absolute;/*绝对定位*/
             top:50%;
             left:0;
             width:100%;
             height:400px;
             margin-top:-200px;
             overflow:hidden;/*隐藏滚动条*/
         }
         .main{
             text-align:center;/*文本居中*/
             max-width:600px;
             height:400px;
             padding:100px 0px;/*上下80px,左右为0*/
             /*background:yellow;*//*验证div的位置*/
             margin:0 auto;/*设置上右下左,居中显示*/
         }
         .main h1{
             font-family:"楷体";/*设置字体*/
             font-size:70px;/*设置字体大小*/
             font-weight:2px;/*调整字体粗细*/
         }
         form{
             padding:20px 0;
         }
         form input{
             border:1px solid white;
             display:block;
             margin:0px auto 10px auto;/*上 右  下 左*/
             padding:10px;
             width:220px;
             border-radius:30px;/*H5设置圆角边框*/
             font-size:18px;
             font-weight:300;
             text-align:center;
         }
         form input:hover{
             background-color:pink;
         }
         form button{
             background-color:yellow;
             border-radius:10px;
             border:0;
             height:30px;
             width:50px;
             padding:5px 10px;
         }
         form button:hover{
             background-color:red;
         }
     </style>
 </head>
 <body>
 <div class="content">    
     <div class="main">
         <h1>Welcome</h1>
         <form>
             <input type="text" name="useid" placeholder="请输入账号"/>
             <input type="password" name="pw" placeholder="请输入密码">
             <button type="submit">登  录</button>
         </form>
     </div>
 </div>         
</body>
</html>

相關推薦:

##用css美化html表單控制項(表單美化)詳細範例

css美化、最佳化、合併工具推薦_html/css_WEB-ITnose

##用純CSS美化radio和checkbox_html/css_WEB-ITnose

#

以上是css登入介面美化的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
上一篇:css動畫教學下一篇:css動畫教學