在不使用换行符的情况下居中对齐文本的最首选方法是什么?
在不使用换行符
的情况下居中对齐文本的最首选方法是什么?
What is most preferred way to center align text like this without using line break <br>
?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果换行符表示换行符,则
是适当的标记。在这种情况下,文本中有换行符,因此只需使用
标签。这没什么问题。If a line break means a line break, then
<br>
is the appropriate tag. And in this case, the text has line breaks in it, so just use<br>
tags. Nothing wrong with that.没有它就不可能做到这一点。文本仅在需要时换行到下一行。这里不需要它,所以不能。只需使用
。这样做就可以了Its not possible to do it without it. The text only wraps to the next line if it is needed. Its not needed here so cannot. Just use
<br>
. Its ok to do that