Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的 HR 标签开始得太早了。我想在 HR 显示之前添加 1-2 个单位的空白区域。
目前,它看起来像:
----------------
但我想将其更改为:
xx-------------- // where x means blank space
我会尝试align,但MDN说它在 HTML5 中已过时。
align
hr { margin-left: 2em; }
试试这个代码:
<hr style="width:80%; float: right; clear: both" />
小提琴