用html和css写登陆页面并且跳转网站




    
    Title
    


学生信息管理系统

账号

密码


2.cs

body{
    /*初始化 */
    margin: 1;
    padding: 0;
    
}
#login{
    border:1px solid rgb(18, 205, 205);
    width: 500px;
    height: 389px;
    /* 固定定位,浏览器怎么滑动,这个块都不变 */
    position: fixed;
    right: 80px;
    top: 150px;
    /* background-color: #68a3c6;
    background-image: linear-gradient(160deg, #68a3c6 0%, #80D0C7 100%);
     */
}
#lo{
   
    width:500px;
    text-align:center;
    font-size: 50px;
   
}
#use,#psw{
    
    width:70px;
    text-align:center;
    font-size: 25px;
}
#user,#password{
  
    width:300px;
    text-align:center;
    font-size: 25px;
}
#butt{
    width:500px;
    height: 60px;
    text-align:center;
    font-size: 20px;
}

你可能感兴趣的:(html,css,前端)