我使用这个CSS从标题文本的结尾到容器的结尾画一条线:
h1 {
display: flex;
}
h1::after {
content: "";
flex: auto;
border-bottom: 3px solid #08A7FC;
margin-bottom: 0.25em;
}
在头文本超过一行之前,这都很有效,因为h1占据了容器的整个宽度。是否有其他解决方案来实现这一点?我已经尝试了Add a long black line at the end of a header tag中的所有方法,但都不起作用。要么这条线在它不应该在的地方,要么根本就没有这条线。
1条答案
按热度按时间kq0g1dla1#
所以,在写这个问题的时候,我已经找到了答案。我修改了Add a long black line at the end of a header tag的已接受答案,将“top”替换为“bottom