gpt4 book ai didi

html - 两个 div 元素应排成一行

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

我有一个包含 2 个 div 的 html 页面,它们应该调整大小,但始终保持在一行中。我该如何构建它?

我有以下示例 html 代码:

<html>
<head>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div id="content">
<div id="table">
<table>
<tr>
<td>ONE</td>
<td>TWO</td>
</tr>
</table>
</div>
<div id="sidebar">
<p>This is a sidebar</p>
</div>
</div>
</body>
</html>

样式表是这样的:

#content {
width: 100%;
}

#table {
width: 100%;
background-color: red;
display: inline-block;
}

#sidebar {
width: 170px;
background-color: blue;
float: right;
display: inline-block;
}

最佳答案

使用 float 和 calc() 函数

这是一种使用 float 和 calc() 函数 (CSS3) 的方法:

#content {
width: 100%;
border: 1px dotted gray;
overflow: auto; /* useful for enclosing the floated region */
}
#table {
float: left;
width: calc(100% - 170px); /* modern but not yet widely supported */
background-color: red;
}
#table table {
border: 1px solid yellow;
width: 100%; /* '100%' for full-width; 'auto' for shrink-to-fit content */
}
#sidebar {
float: right;
width: 170px;
background-color: blue;
}

#table#sidebar 分别向左和向右浮动。

当您 float 一个元素时,除非您指定宽度值,否则它会计算为收缩以适合值。

如果您在 #table 上指定 width: 100%,这将强制侧边栏从新的一行开始。

要为侧边栏留出空间,请使用 calc(100% - 170px) 计算表格面板的理想最大宽度。

calc() 函数被最新的浏览器支持,所以这个解决方案可能不适合。

See Demo Fiddle

关于html - 两个 div 元素应排成一行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18913953/

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