gpt4 book ai didi

html - 多个固定宽度的列不能并排放置

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

我正在阅读一本 HTML/CSS 书籍,并尝试通过 float 并排放置多个 div 元素,每个元素都有固定的宽度和边距,所以它们完全适合页面宽度。即使将书中的示例简化为最简单的形式,最后一列总是向下倾斜,就好像包含的元素不够大一样。有什么见解吗?

<html>
<head>
<style>
body {
width: 960px;
}
#c1, #c2, #c3 {
float: left;
width: 300px;
height: 50px;
margin: 10px;
border: 1px dashed black;
}
</style>
</head>
<body>
<div id="c1">
</div>
<div id="c2">
</div>
<div id="c3">
</div>
</body>
</html>

https://jsfiddle.net/1otbf659/

最佳答案

因为你有边框,而你的 div 不是 300px。你的 div 是 302px。只需将 box-sizing: border-box 添加到您的 div。

 #c1, #c2, #c3 {
float: left;
width: 300px;
height: 50px;
margin: 10px;
border: 1px dashed black;
box-sizing: border-box;
}

这里是 JSFiddle demo

关于html - 多个固定宽度的列不能并排放置,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35068039/

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