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.
我需要此页面标题的边框延伸到右侧。
也许有更好的方法可以做到这一点,但我使用了 position:absolute 和 width:100% 因为下面的内容 div 需要重叠。
这会导致出现水平滚动条。我怎样才能摆脱它?
问题站点
由于您的绝对,向元素添加 100% 会将其扩展为从其开始的视口的大小。
我相信您想要做的事情可以通过保持绝对位置来完成,但也可以在您的#content规则中添加相对定位:
#content
#content { position: relative; }