我有一些 HTML:
<div align="center" style="border:1px solid red">
This is some text in a div element!
</div>
Div 正在更改文档上的间距,因此我想改为使用 span。
但是 span 并没有把内容集中起来:
<span style="border:1px solid red;align=center">
This is some text in a div element!
</span>
我该怎么补救?
编辑:
我的完整代码:
<html>
<body>
<p>This is a paragraph. This text has no alignment specified.</p>
<span style="border:1px solid red;text-align=center">
This is some text in a div element!
</span>
</body>
</html>