我遇到了在 HTML 文档中删除对齐的问题。
<html>
<head>
</head>
<body>
<p style="margin-top: 0" align="center">
Hello World
</p>
<p style="margin-top: 0" align="center">
Java World
</p>
</body>
</html>
我的问题是如何删除第一段的对齐而不影响第二段。如果我使用正则表达式,它也会删除第二段的对齐。我真的很感谢你对这个问题的任何评论。