gpt4 book ai didi

html - 如何在div中定位元素

转载 作者:行者123 更新时间:2023-11-27 23:59:57 25 4
gpt4 key购买 nike

我正在学习如何制作网站。

这是我的正文标签:

<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%;
}

我制作了网站模板:Template

上面的代码将我的网站设计成这样:First image

当我在 CSS 文件的 #passwordInput 中添加 margin-top: 150px; 时,我的网站看起来像这样:Second image

为什么所有 UI 元素都改变了位置?我只在 #passwordInput 中添加了 margin-top: 150px;

我正在学习如何制作和设计网站。敬请谅解。

最佳答案

因为所有元素都在同一个 div 中,当您给其中一个元素留出边距时,它会展开。

而是给它 position: relativetop: 150px

#passwordInput {
position: relative;
top: 150px;
}

关于html - 如何在div中定位元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56043867/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com