div本身已经设置了浅*的背景色,如何设置div里的段落字体颜色为白色?
发布网友
发布时间:2022-04-23 09:54
我来回答
共2个回答
热心网友
时间:2023-10-10 08:13
楼下写的是CSS,不过看来楼主是直接把CSS写进HTML里了
<div
style="这里浅*背景">
<p
style="这里设字体白色">
这里是文字
</p>
</div>
不知道楼主明白了没
热心网友
时间:2023-10-10 08:13
浅*背景配白色字体?您是文森特·威廉·梵高么?
<!DOCTYPE
HTML>
<html>
<head>
<meta
http-equiv="Content-Type"
content="text/html;
charset=utf-8">
<title>无标题文档</title>
<style
type="text/css">
.topdiv
{
background-color:
#FF9;
}
.topdiv
p
{
color:
#FFF;
background-color:
#F30;
}
</style>
</head>
<body>
<div
class="topdiv">
<p>此处显示
class
"topdiv"
的内容</p>
<p>此处显示
class
"topdiv"
的内容</p>
</div>
</body>
</html>
实在受不了这个结果,只能也印象一下