有一个简单的问题。我有锚标签,它是指向外部网站的链接,位于12列网格内的p元素下面。我在它们上面使用了col-4,文本停留在容器内,但是锚文本没有打破另一条线。 p元素及其文本保持为col-4,但锚文本溢出。请帮忙
HTML
<div class="grouped-content__selection">
<div class="col4">
<h3>Go Kart Sorihuela Costa</h3>
<p>Hello <br>Website: <a href="google.co.uk">This line of text goes over</a></p>
</div>
</div>
CSS
.grouped-content__selection {
border-top: 2px solid #184450;
padding: 2rem 1rem 1rem 1rem;
overflow: hidden;
height: 100%;}
答案 0 :(得分:1)
我认为a{white-space: pre-wrap}
应该做的伎俩
这是指向similar issue
的链接答案 1 :(得分:0)
elif
为我工作,多亏this link
答案 2 :(得分:0)
内联:
<p>Hello <br>Website: <a href="google.co.uk" style="display: contents">This line of text goes over</a></p>
外部:
<p>Hello <br>Website: <a href="google.co.uk" class="align-link">This line of text goes over</a></p>
css文件:
.align-link{
display: contents;
}