为什在HTML里设置div背景颜色在CSS里在设置这个div样色就不会变
发布网友
发布时间:2022-04-20 04:56
我来回答
共1个回答
热心网友
时间:2022-04-20 06:26
css肯定可以设置div背景颜色的。出现这个问题,肯定是你哪里写错了
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<style>
.a{background:red;width:350px;height:200px;color:#ffffff;font-size:13px;line-height:200px;text-align:center}
</style>
</head>
<body>
<div class="a">这里是通过css设置背景颜色为红色的div
</div>
</body>
</html>