gpt4 book ai didi

html - top 0px 定位在 html/css 元素的中间?

转载 作者:行者123 更新时间:2023-11-28 11:14:50 25 4
gpt4 key购买 nike

尝试创建基本 header ,但在 user_login 元素内的定位文本方面遇到了问题。

html:

<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="home_style.css">
</head>
<body>
<div class="header">
<div class="search_bar">
<input type="text" name="search" placeholder="Search magical instruments, tricks, books and more">
</div>
<div class="user_settings">
<a href="settings.html"><img src="onebit_09.png" width="24px" height="24px"></a>
</div>
<div class="user_login">
<p class="login_properties">Test</p>
</div>
</div>
</body>
</html>

CSS:

html,body {
height : 100%;
min-height : 100%;
width : 100%
min-width : 100%;
margin : 0;
padding : 0;
}

.header {
margin-top : 0;
margin-bottom : 0;
height : 10%;
width : 100%;
background-color : #343430;
}

.search_bar input[type="text"] {
position : absolute;
left : 20%;
top : 5%;
width : 27%;
height : 2.75%;
padding : 5px;
padding-right : 50px;
outline : none;
border : 2px solid #9C4B8F;
border-radius : 5px;
background-color : #FBFBFB;
font-family : Cambria, Cochin, Georgia, serif;
font-size : 16px;
color : grey;
background-image : url('search.png');
background-position : 100% -10px;
background-repeat : no-repeat;
margin-top : -1.375%;
}

.search_bar input[type="text"]:focus {
background-color : #FFFFFF;
border-color : #333333;
}

.user_login {
position : absolute;
left : 70%;
top : 5%;
width : 5%;
height : 2.75%;
padding : 5px;
margin : -1.375% 0 0 -2.5%;
color : white;
background-color : #9C4B8F;
border-radius : 5px;
}

p.login_properties {
position : absolute;
height : 50%;
width : 75%;
top : 0px;
}

.user_settings img {
position : absolute;
top : 5%;
left : 95%;
height : 48px;
width : 48px;
margin : -24px 0 0 -24px;
}

为什么登录属性中的顶部 0px 将文本“Test”定位在 user_login 元素的中间位置?看来我错误地将元素的顶部放在中间某处,请帮忙

最佳答案

因为p元素的默认margin。

关于html - top 0px 定位在 html/css 元素的中间?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21809560/

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