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.
例子
这不像他们在 Bootstrap 页面上的示例中那样工作。除非我给它一个很大的页边距,否则页眉会一直溢出页面。难道我做错了什么?我真的很想能够使用 Bootstrap。这肯定会为我节省大量时间。
line-height: 20px;代码中的body限制标题区域扩展到字体大小。添加line-height: 100px;(与字体大小相同)或line-height: 100%;添加到header代码应该会给您想要的结果。
line-height: 20px;
body
line-height: 100px;
line-height: 100%;
header
或者,您可以将“Maaco 状态检查”包装在 <h1> 标记中,并放弃您的自定义样式。