gpt4 book ai didi

html - 使用百分比在居中的 div 内放置 3 个 div

转载 作者:可可西里 更新时间:2023-11-01 13:39:33 26 4
gpt4 key购买 nike

早上好

我正在尝试在宽度为 90% 的居中容器 div 内创建一个居中的 3 列布局(h1、h2、h3)。

h1 和 h3 是背景图像宽度的固定宽度 b/c,h2 应该是剩余空间的 100%。我可以使用指定的宽度来完成这项工作,但我想避免这种情况,以防用户想要查看 < 800px 的页面。

CSS:



#home-container {
background-image:url('/images/bg.png');
background-repeat: repeat-x;
text-align: center;
margin-left: auto;
margin-right: auto;
width: 800px;
}

#h1 {
background-image:url('/images/navbar_left.png');
background-repeat: no-repeat;
width: 27px;
}

#h2 {
background-image:url('/images/navspacer.png');
background-position: center top;
background-repeat: repeat-x;
width:746px;
}

#h3 {
background-image:url('/images/navbar_right.png');
background-position: right top;
background-repeat: no-repeat;
width: 27px;
}

#h1, #h2, #h3 {
float:left;
}

the html:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html dir="ltr" lang="en-US" xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>3col test</title>
<meta content="text/html; charset=UTF-8" http-equiv="Content-Type" />
<link rel="stylesheet" type="text/css" href="/stylesheets/main.css" media="all" />
</head>
<body>
<div id="home-container">
<div id="h1">1</div>
<div id="h2">2</div>
<div id="h3">3</div>
</div>
</body>
</html>

最佳答案

可能有更简单的答案,但这里有一种方法:

Working solution: http://jsfiddle.net/W8Bwe/1/

基本上,将 h1 和 h3 嵌入到 h2 中,分别向左和向右浮动。

然后只需在 h2 上设置边距,以说明 h1 和 h3 占用的空间。

关于html - 使用百分比在居中的 div 内放置 3 个 div,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6943735/

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