本人也是小白,互相学习,互相进步,加油持续学习一定会有收获的!!!
css:
* {
margin: 0;
padding: 0;
}
a {
text-decoration: none;
color: black;
}
body {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 100vh;
background-image: url("./hutao1.jpg"); /* 在这里插入一张你想要设置的背景图片 */
}
.box {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
width: 380px;
height: 540px;
border: 1px solid rgb(255, 255, 255, 0.5);
backdrop-filter: blur(10px);
border-radius: 15px;
}
.box > h2 {
color: rgb(255, 255, 255, 0.9);
margin-bottom: 50px;
}
.box .input-box {
display: flex;
flex-direction: column;
justify-content: center;
align-items: start;
}
.box .input-box > label {
margin-top: 4px;
font-size: 14px;
margin-bottom: 10px;
color: rgb(255, 255, 255, 0.9);
}
.input-box input {
width: 250px;
heigh