Menu
×
×
正确!
HTML - 代码练习:使用 CSS 使文档居中对齐。
<html>
<body style="text-align:center;"> <h1>This is a heading</h1> <p>This is a paragraph.</p> </body> </html>
<html>
<body style='text-align:center;'> <h1>This is a heading</h1> <p>This is a paragraph.</p> </body> </html> 不正确点击 这里 再试一次。 正确!下一个 ❯
<html>
<body =" ;"> <h1>This is a heading</h1> <p>This is a paragraph.</p> </body> </html> |