gpt4 book ai didi

html - 在 HTML 中对齐 div 标签?

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

我有以下 HTML 代码:

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Homepage</title>
<link rel="stylesheet" href="main.css" type="text/css">
</head>
<body>
<div class="topbar">
<div class="title">Welcome</div>
<div class="control">
<span style="padding-right: 0.5em;"><a href="index.html">Bla</a></span>
<span style="padding-right: 0.5em;">Blue</span>
<span style="padding-right: 0.5em;"><a href="contact.html">Blub</a></span>
</div>
</div>
<div class="main">
<div class="text">
Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam
</div>
</div>
</body>

以及以下 CSS 文件:

.body { 
overflow: hidden;
color: black;
}
.html {
overflow: hidden;
margin: 0;
}
.title {
color: black;
font-family: 'Arial';
font-weight: bold;
font-size: 20pt;
padding: 0 0 0 0;
margin-left: 20%;
margin-top: 15px;
margin-bottom: 15px;
text-align: left;
float: left;
}
.control {
color: black;
font-family: 'Arial';
font-size: 15pt;
padding: 0 0 0 0;
margin-left: 0;
margin-right: 20%;
margin-top: 21px;
text-align: right;
}
.text {
margin-left: 20%;
margin-right: 20%;
font-family: 'Arial';
font-size: 12pt;
text-align: justify;
}
.topbar {
padding: 0 0 0 0;
overflow: hidden;
position: fixed;
top: 0;
left: 0;
right: 0;
width: 100%;
background-color: rgba(241, 241, 241, 0.9);
border-bottom: solid 1px black;
}
.main {
padding: 0 0 0 0;
overflow: hidden;
top: 0;
left: 0;
right: 0;
width: 100%;
padding-top: 75px;
}

结果是: Result

如何对齐两个文本?

最佳答案

margin:0正文并更正拼写错误:它不是 .body但只有body (与 html 相同)因为它们不是类而是标签。

为了解释:你的顶部栏是固定的并设置为 left:0因此,与其他内容不同,body 的默认边距不会应用于它。这就是为什么你有这个小的对齐错误 (8px)。

body {
overflow: hidden;
color: black;
margin:0;
}

html {
overflow: hidden;
margin: 0;
}

.title {
color: black;
font-family: 'Arial';
font-weight: bold;
font-size: 20pt;
padding: 0 0 0 0;
margin-left: 20%;
margin-top: 15px;
margin-bottom: 15px;
text-align: left;
float: left;
}

.control {
color: black;
font-family: 'Arial';
font-size: 15pt;
padding: 0 0 0 0;
margin-left: 0;
margin-right: 20%;
margin-top: 21px;
text-align: right;
}

.text {
margin-left: 20%;
margin-right: 20%;
font-family: 'Arial';
font-size: 12pt;
text-align: justify;
}

.topbar {
padding: 0 0 0 0;
overflow: hidden;
position: fixed;
top: 0;
left: 0;
right: 0;
width: 100%;
background-color: rgba(241, 241, 241, 0.9);
border-bottom: solid 1px black;
}

.main {
padding: 0 0 0 0;
overflow: hidden;
/* not needed since the element is static
top: 0;
left: 0;
right: 0;
*/
width: 100%;
padding-top: 75px;
}
<div class="topbar">
<div class="title">Welcome</div>
<div class="control">
<span style="padding-right: 0.5em;"><a href="index.html">Bla</a></span>
<span style="padding-right: 0.5em;">Blue</span>
<span style="padding-right: 0.5em;"><a href="contact.html">Blub</a></span>
</div>
</div>
<div class="main">
<div class="text">
Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam
</div>
</div>

关于html - 在 HTML 中对齐 div 标签?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48673725/

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