gpt4 book ai didi

html - Bootstrap 3 - 全宽彩色 block

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

我真的想要全 Angular 色 block 来代表我网页的不同部分。

我正在使用 bootstrap 3 来构建我的网站。该网站位于标准 Bootstrap 的容器中,但我希望某些部分是跨越整个浏览器窗口的彩色 block 。

有谁知道这是怎么做到的,可以发个例子吗?

最佳答案

您需要做的是将容器放在另一个标签中。标签应该是占据页面整个宽度的标签,带有 css background 属性。在本例中,我选择了 html5“section”标签。下面是一个例子。你可以看看这个 jsfiddle

<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Bootstrap 3 - Full width coloured blocks</title>

<link rel="stylesheet" type="text/css" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.1/css/bootstrap.min.css">

<style type='text/css'>
.colored-block {
width: 100%;
padding: 30px 0px;
color: #fff;
}
.purple { background: purple; }
.green { background: green; }
.blue { background: blue; }
</style>

</head>

<body>
<section class="colored-block purple">
<div class="container">
<h1>Header 1</h1>
<p>Paragraph content goes here</p>
</div>
</section>
<section class="colored-block green">
<div class="container">
<h1>Header 2</h1>
<p>Paragraph content goes here</p>
</div>
</section>
<section class="colored-block blue">
<div class="container">
<h1>Header 3</h1>
<p>Paragraph content goes here</p>
</div>
</section>
</body>
</html>

这是一个jsfiddle

关于html - Bootstrap 3 - 全宽彩色 block ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25670459/

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