gpt4 book ai didi

html - 如何在部分中添加背景颜色?

转载 作者:太空狗 更新时间:2023-10-29 12:31:52 24 4
gpt4 key购买 nike

有没有其他方法可以在 section 标签中添加背景颜色?除了使用body {background-color: blue;},还有什么方法可以给section添加背景色?

我正在尝试像这样添加部分背景颜色:

<!DOCTYPE html>
<html>
<head>
<title>Testing</title>
<style>
#ABC {
background-color: blue;
}
</style>
</head>
<body>
<section id="ABC">
</section>
</body>
</html>

我的浏览器没有显示颜色。

最佳答案

是因为#ABC没有内容或者没有高度!

请看下面我设置高度后发生的情况。

<!DOCTYPE html>
<html>
<head>
<title>Testing</title>

<style>

#ABC {
background-color: blue;
height: 100%;
position: absolute;
top: 0;
left: 0;
width: 100%;
}

body{
background: grey;
margin: 0;
}

</style>

</head>

<body>

<section id="ABC">


</section>

</body>
</html>

关于html - 如何在部分中添加背景颜色?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38992878/

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