gpt4 book ai didi

html - 文本位置为 "position: absolute"

转载 作者:太空宇宙 更新时间:2023-11-04 16:08:17 25 4
gpt4 key购买 nike

我在文本定位方面遇到了问题。我使用“h6”作为信息 block 的标题。我想从顶部和左侧制作一个 10px 的间隙,但我不能从顶部制作 10px 的间隙,其他超过 10px。左侧很好。

HTML:

<!DOCTYPE html>
<html>
<head>
<title>Sākums</title>
<link rel="stylesheet" type="text/css" href="css/main.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.0/jquery.min.js"></script>
</head>
<body>
<div class="container">
<div class="log_me">
<div class="log_inf">
<div class="log_inf_titl"><h6>Uzmanību!</h6></div>
<div class="log_inf_tex"><p>Lorem ipsum dolor sit <a href="#">amet</a>, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p></div>
</div>
</div>
</div>
</body>
</html>

CSS:

@font-face {
font-family: OpenSans-Regular;
src: url(font/OpenSans-Regular.ttf);
}

body {
background: #f2f2f2;
}

.log_me {
background: #fff;
border: solid 1px #e4e4e4;
height: 211px;
width: 300px;
position: absolute;
}

.log_inf {
border: solid 1px #f2f2f2;
background: #fff;
height: 70px;
width: 278px;
position: absolute;
top: 10px;
left: 10px;
}

h6 {
font-family: OpenSans-Regular;
font-size: 11px;
color: #707070;
margin: 0;
padding: 0;
-webkit-margin-before: 0px;
-webkit-margin-after: 0px;
-webkit-margin-start: 0px;
-webkit-margin-end: 0px;
font-weight: normal;
display: block;
}

p {
font-family: OpenSans-Regular;
font-size: 11px;
color: #707070;
margin: 0;
padding: 0;
-webkit-margin-before: 0px;
-webkit-margin-after: 0px;
-webkit-margin-start: 0px;
-webkit-margin-end: 0px;
font-weight: normal;
display: block;
}

.log_inf_titl {
position: absolute;
top: 10px;
left: 10px;
}

.log_inf_tex {
position: absolute;
top: 23px;
left: 10px;
}

谢谢你,Ricards。

最佳答案

我建议您重新考虑您的设计,因为“间隙”通常是通过 paddingmargin 实现的。

但是,解决您的具体问题,由于您更改了 h6 字体的默认大小,因此还要调整 line-height:

h6 {
font-family: OpenSans-Regular;
font-size: 11px;
line-height: 11px;
/* ... */
}

关于html - 文本位置为 "position: absolute",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36342404/

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