没有背景颜色啊
来源:1-6 编程练习
DURANT
2017-11-15 20:15:35
<html> <head> <title>hello</title> </head> <body> <p backgroundcolor="red">HELLO,everyone.This is my first page!</p> </body> </html>
2回答
叼牌大师兄
2017-11-16
<p style="background: red">HELLO,everyone.This is my first page!</p>
bgcolor 是标签body的属性 不推荐使用
慕姐2234847
2017-11-15
<html>
<head>
<title>hello</title>
</head>
<body bgcolor="red">
<p>HELLO,everyone.This is my first page!</p>
</body>
</html>
背景属性写在<body>标签内