gpt4 book ai didi

html - 固定 - 液体 - 固定布局

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

我想要一个 [Fixed][Liquid][Fixed] 跨浏览器兼容的布局。

HTML:

body
div#col-1
div#col-2
div#col-3

CSS:

    #col-1 {
width:150px;
float:left;
}
#col-2 {
width:100%;
padding:0 150x;
}
#col-3 {
positon:absolute:
right:0;
width:150px;
}

这种方法行得通/更好吗?

最佳答案

这很简单。

这是代码

<html>
<head>
<style type="text/css">
#left {
float: left;
width: 150px;
border: 1px solid black;
background-color: #999;
height: 50px;
}
#right {
float: right;
width: 150px;
border: 1px solid black;
background-color: #999;
height: 50px;
}
#center {
/* margin with 10px margin between the blocks*/
margin: 0 160px;
border: 1px solid black;
height: 50px;
}
</style>
</head>
<body>
<div id="left">Text</div>
<div id="right">Text</div>
<div id="center">Text</div>
</body>
</html>

我使用的是 float 而不是绝对位置。在绝对定位之上使用 float 的优点是您可以在其下方放置另一个 div,比方说页脚。并明确说明:两者都会自动显示在页面底部。

这是一个带页脚的例子

<html>
<head>
<style type="text/css">
#left {
float: left;
width: 150px;
border: 1px solid black;
background-color: #999;
height: 50px;
}
#right {
float: right;
width: 150px;
border: 1px solid black;
background-color: #999;
height: 50px;
}
#center {
/* margin with 10px margin between the blocks*/
margin: 0 160px;
border: 1px solid black;
height: 50px;
}
#footer {
clear: both;
margin-top: 10px;
border: 1px solid black;
}
</style>
</head>
<body>
<div id="left">Text</div>
<div id="right">Text</div>
<div id="center">Text</div>
<div id="footer">footer</div>
</body>
</html>

瞧!您已获得流动布局。

关于html - 固定 - 液体 - 固定布局,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1558761/

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