我正在学习如何制作网站。
这是我的身体标签:
<body>
<h1 id="title">Title</h1>
<div id="loginContainer">
<img id="usernameIcon" src="assets/images/usernameIcon.png" alt="">
<input id="usernameInput" type="text">
<img id="passwordIcon" src="assets/images/passwordIcon.png" alt="">
<input id="passwordInput" type="password">
<button id="loginButton">Sign in</button>
</div>
</body>
和CSS文件:
#title {
color: black;
text-align: center;
letter-spacing: 1px;
font-weight: bold;
}
#loginContainer{
width: 60%;
height: 400px;
margin-left: auto;
margin-right: auto;
margin-top: 80px;
background-color: white;
border-radius: 20px;
box-shadow: 10px 10px 72px -26px rgba(0,0,0,0.75);
}
#usernameIcon{
width: 30px;
height: 30px;
margin-top: 70px;
margin-left: 30%;
}
#usernameInput{
width: 30%;
height: 30px;
}
#passwordInput{
width: 30%;
height: 30px;
}
#passwordInput:focus-within{
}
#passwordIcon{
width: 30px;
height: 30px;
}
#loginButton{
width: 40%;
height: 40px;
border-radius: 15px;
border-width: 0;
background-color: green;
margin-top: 230px;
margin-left: 30%;
margin-right: 30%;
}
我制作了网站的模板:模板
上面的代码设计我的网站是这样的:第一张图片
当我在 CSS 文件中添加margin-top: 150px;
#passwordInput时,我的网站如下所示:第二张图片
为什么所有 UI 元素都改变了位置?我margin-top: 150px;
只添加到#passwordInput。
我正在学习如何制作和设计网站。请,为您的理解。