gpt4 book ai didi

html - 如何将 CSS 元素直接放置在彼此之下?

转载 作者:太空狗 更新时间:2023-10-29 13:46:30 26 4
gpt4 key购买 nike

我知道可能有这样一个已解决的问题,但我已经搜索过但找不到解决方案。

所以,看。我有网站的基础知识。页眉、特色内容、主要内容和页脚。我希望主要内容位于特色内容之下,但现在它落后于它。我怎样才能让它正好在它下面?

HTML:

<html>
<head>
<link href="style.css" type="text/css" rel="stylesheet">
</head>
<body>
<div class="navigation"></div>
<div class="content-featured"></div>
</body>

CSS:

html, body { 
margin: 0;
padding: 0;
}

.navigation {
float: left;
padding: 15px 0;
min-width: 100%;
opacity: .48; /* layer alpha */
background-color: #1f1f1f; /* layer fill content */
height: 20px;
}

.content-featured {
height: 384px;
background-image: -moz-linear-gradient(bottom left, #1db568 -25%, #1db568 17.74%, #257755 125%); /* gradient overlay */
background-image: -o-linear-gradient(bottom left, #1db568 -25%, #1db568 17.74%, #257755 125%); /* gradient overlay */
background-image: -webkit-linear-gradient(bottom left, #1db568 -25%, #1db568 17.74%, #257755 125%); /* gradient overlay */
background-image: linear-gradient(bottom left, #1db568 -25%, #1db568 17.74%, #257755 125%); /* gradient overlay */
}

.content-main {
height: 308px;
}

最佳答案

创建一个容器 div。这可以容纳您想要的所有东西,无论您是想垂直还是水平堆叠它们。所以大致看起来像这样:

<div id="container">
<div class="header">
</div>

<div class="navigation">
</div>

<div class="left-sidebar">
</div>

<div class="content">
</div>
</div>

你的 CSS 将是

#container {
width:960px;
}
.header, .navigation {
width: 100%;
float:left;
height: 80px;
}
.sidebar {
width: 200px;
float:left;
min-height: 500px;
}
.content {
width: 760px;
float: left;
min-height: 500px;
}

关于html - 如何将 CSS 元素直接放置在彼此之下?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17871650/

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