gpt4 book ai didi

html - 将三个链接居中,使它们在页面上的间距相等

转载 作者:行者123 更新时间:2023-11-27 23:08:51 24 4
gpt4 key购买 nike

我的教授给全类的图像可能类似于他可能要求我们在即将到来的考试中复制的图像。他的建议是回家看看能不能做个克隆人来研究。我有大部分内容,但他在顶部有这三个链接,它们完美地分布在整个页面上。

我玩了好几个小时的数字。我已经接近了,但它并没有完全复制图像。我曾尝试将链接的宽度设为 33%,边距设为 1.66%,但实际上我得到了一些意想不到的结果,浏览器将其中一个链接置于另一个链接之下。如果说实话,这只会让我更加困惑。他的形象对我来说是如此完美,它暗示了一些数学,而不是在它起作用之前只是摆弄数字。

HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="practiceTest.css">
<title>Document</title>
</head>
<body>
<div id="box1">
<a href="https://www.google.com" id="googLink">Google</a>
<a href="https://www.microsoft.com" id="microLink">Microsoft</a>
<a href="https://www.yahoo.com" id="yahooLink">Yahoo</a>
</div>

<hr>
<div id="box2">
<h1 id="header">Guest Book</h1>

<form action="post">
First Name:
<input type="text" id="fistName">
Last Name:
<input type="text" id="lastName">
College:
<input type="checkbox" name="Business" id="business">
Business
<input type="checkbox" name="Education" id="education">
Education
<input type="checkbox" name="arts" id="arts">
<br>
Current Profession:
<select>
<option value="idk">unemployed</option>
<option value="idk1">idk1</option>
</select>
<br>
Comments:
<br>
<textarea name="comments" id="comments" cols="30" rows="2"></textarea>
Would you like to share your comments with others?
<br>
<input type="radio" name="yes" id="yes">
<input type="radio" name="yes" id="yes">
<hr>
<button type="submit">Send</button>
<button type="reset">Clear</button>
</form>
</div>
<hr>
<div id="box3">
Copyright - Made up Name
</div>
</body>
</html>

CSS

#box1{
background-color: black;
align-self: center;
padding: 20px;

}

a{
align-content: center;
width: 20%;
margin:0 5.33%;
padding: 10px 0;
color: azure;
background-color: red;
display: inline-block;
text-decoration-line: none;
color: white;
text-align: center;

}

body{
background-color: whitesmoke;
}

#box2{
padding: 20px 20px;
margin: auto 10px;
background-color: white;
color: darkred;
}

#box3{
color: white;
background-color: black;
padding: 20px;
text-align: center;
}

最佳答案

如果您从左侧/右侧使用 1.66% 的边距,则从您的宽度减少相同的边距,即 33.33% - 1.66% - 1.66%。因此,在这种情况下,您的宽度应为 30.01%。请确保您使用的是 float:left,因为 display:inline-block 会在元素周围占用额外的空间。

如果您还想在 a 标签内添加一些填充,那么您还需要使用 box-sizing:border-box 使填充计数在范围内元素的宽度。

新建议:

作为替代方案,您也可以使用 display:flex 并平均分配间距。您可以在 Google 上轻松找到有关如何使用 display:flex(或者说 css flexbox 布局模型)的资源。

关于html - 将三个链接居中,使它们在页面上的间距相等,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58636040/

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