gpt4 book ai didi

html - 多个盒子中的不同颜色

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

我想让下面脚本中的方框有不同的颜色。

我有这个 html:

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<title> </title>
<link rel="stylesheet" href="mycss.css"/>
</head>

<body>

<div id="Box">
<div class="Box1">
<div class="box">
<h2> Heading 3</h2>

</div>
</div>
<div class="Box2">
<div class="box">
<h2>Heading 2</h2>
</div>
</div>
<div class="Box3">
<div class="box">
<h2>Heading 3</h2>
</div>
</div>
</div>
</body>

这是盒子及其形状的 CSS:

#Box
{
width:100%;
margin: 0 auto;
margin-top:75px;
height:250px;
}
.Box1, .Box2, .Box3 {
float:left;
width:25%;
background-color:red;
}

.box{
height: 250px;
background-color: red;
border:1px solid #bdbdbd;
-webkit-border-radius: 5px;
border-radius: 5px;
-moz-box-shadow: 0 0 10px #bdbdbd;
-webkit-box-shadow: 0 0 10px #bdbdbd;
box-shadow: 0 0 10px #bdbdbd;
}

如何让 Box1 Box2 Box3 有不同的颜色?例如分别为红色、蓝色、绿色。

最佳答案

你只需要在你的类中添加一些属性(背景颜色):.box1,.box2,.box2

并删除 Box 类中的默认背景颜色。

注意:类名尽量使用小写字母见示例

#Box {
width: 100%;
margin: 0 auto;
margin-top: 75px;
height: 250px;
}
.Box1,
.Box2,
.Box3 {
float: left;
width: 25%;
}
.box {
height: 250px;

border: 1px solid #bdbdbd;
-webkit-border-radius: 5px;
border-radius: 5px;
-moz-box-shadow: 0 0 10px #bdbdbd;
-webkit-box-shadow: 0 0 10px #bdbdbd;
box-shadow: 0 0 10px #bdbdbd;
}
.Box1 {
background-color: red;
}
.Box2 {
background-color: lime;
}
.Box3 {
background-color: yellow;
}
<!DOCTYPE html>
<html>

<head>
<meta charset="utf-8" />
<title></title>
<link rel="stylesheet" href="mycss.css" />
</head>

<body>

<div id="Box">
<div class="Box1">
<div class="box">
<h2> Heading 3</h2>

</div>
</div>
<div class="Box2">
<div class="box">
<h2>Heading 2</h2>
</div>
</div>
<div class="Box3">
<div class="box">
<h2>Heading 3</h2>
</div>
</div>
</div>
</body>

关于html - 多个盒子中的不同颜色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28076992/

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