网站网站环境搭建教程珠海seo快速排名
本节使用了HTML+css写的一个简单的登录页面代码,有些字体设置和格式还可以更好的调配,因为第一次写一个完整的界面欠缺之处还请见谅。
<!DOCTYPE html>
<html lang="en">
<head><meta charset="UTF-8"><meta http-equiv="X-UA-Compatible" content="IE=edge"><meta name="viewport" content="width=device-width, initial-scale=1.0"><title>login</title><link rel="stylesheet" href="style.css"/>
</head>
<body><div class="box"><h2>login</h2><div class="input-box"><label>账号</label><input type="text"></div><div class="input-box"><label>密码</label><input type="password"></div><div class="btn-box"><a href="#">忘记密码</a><div><button>登录</button><button>注册</button></div></div></div>
</body>
</html>
@charset "utf-8";*{margin: 0;padding: 0;
}body {display: flex;flex-direction: column;justify-content: center;align-items: center;height: 100vh;background: url(img2.jpg) no-repeat;background-size: cover;
}.box {border-radius: 20px;display: flex;flex-direction: column;justify-content: center;align-items: center;width: 350px;height: 380px;border-top: 1px solid rgba(255,255,255,0.5);border-left: 1px solid rgba(255,255,255,0.5);border-bottom: 1px solid rgba(255,255,255,0.2);border-right: 1px solid rgba(255,255,255,0.2);backdrop-filter: blur(10px);background: rgba(50,50,50,0.2);
}.box > h2 {margin-bottom: 20px;color: rgba(0, 0, 0, 0.5);
}.box .input-box {display: flex;flex-direction: column;justify-content: center;align-items: start;margin-bottom: 10px;
}.box .input-box > label {margin-bottom: 5px;color: rgba(0,0,0,1);font-size: 13px;
}.box .input-box > input {box-sizing: border-box;color: rgba(0,0,0,1);font-size: 14px;height: 35px;width: 249px;background: rgba(255,255,255,0.3);border: 1px,solid rgba(255,255,255,0.5);border-radius: 0.2s;outline: none;padding: 0 10px;letter-spacing: 1px;
}.box .input-box > input:focus {border: 1px,solid rgba(255,255,255,0.8);
}.box .btn-box {width: 250px;display: flex;flex-direction: column;justify-content: center;align-items: start;}.box .btn-box > a {font-size: 13px;text-decoration: none;color: rgba(255,255,255,0.9);transition: 0.2s;width: 249px;text-align: end;
}.box .btn-box > a:hover {color: rgba(255,255,255,1);
}.box .btn-box > div {display: flex;flex-direction: row;justify-content: center;align-items: start;
}.box .btn-box > div >button {width: 120px;height: 35px;border: 1px solid rgba(29,29,29,0.5);background: rgba(29,29,29,0.5);color: rgab(255,255,255,0.9);border-radius: 5px;transition: 0.2s;
}.box .btn-box > div >button :hover{border: 1px solid rgba(29,29,29,0.5);background: rgba(29,29,29,0.5);
}.box .btn-box > div >button:nth-of-type(2){margin-left: 5px;
}
效果图: