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>
占用浏览器的全长。我尝试设置填充和边距但没有效果。使用普通 css 或使用 Bootstrap 5 的任何解决方案?
您需要为 hr 标签设置边距。以下将起作用
hr { margin: auto 220px } /* just for demo*/ .div { text-align: center; margin: 20px; }
<div class='div'> div - 1</div> <hr> <div class='div'> div - 2</div>
您可以在 html 上编写以下样式标记。
<style> hr{margin: auto 220px;}</style> <hr>
在这里获取更多信息。