Menu
×
×
正确!
CSS 练习:将 <h1> 的所有边距设置为“25px”。 提示:使用 margin 边距属性。 |
编辑此代码:
x
<html> <head> <style> h1 { background-color: lightblue; } </style> </head> <body> <h1>This is a Heading</h1> <p>This is a paragraph.</p> </body> </html> 结果:
|
正确的代码:
xxxxxxxxxx 结果:
|