gpt4 book ai didi

html - 无法获得跨度以换行

转载 作者:行者123 更新时间:2023-11-28 06:52:23 24 4
gpt4 key购买 nike

我无法让跨度转到新行。他们应该坐在图片旁边

这是我的 HTML:

<h2>Club Profile Card</h2>
<div class="clubprofilecard">
<h3><a href=""><img src=""/>Row 1
<span>Row 2</span>
<span>Row 3</span>
<span>Row 4</span>
</a></h3>
</div>

这是我的 CSS:

.clubprofilecard {
padding-bottom:10px;
margin-bottom:10px;
/**border-bottom:1px solid #d0d0d0;*/
}
.clubprofilecard h3{
position:relative;
font:18px/24px DinWebCond,Sans-serif;
box-sizing:border-box;
padding-left:90px;
margin:0px 0px 15px 0px;
}
.clubprofilecard h3 a{
color:#f06000;
border:none;
text-decoration:none;
}
.clubprofilecard img {
position:absolute;
left: 0px;
top: 0px;
width: 80px;
height: 80px;
border-radius:3px;
}
.clubprofilecard h3 a span
{
white-space:nowrap;
float:left;
display:inline-block;
}

.clubprofilecard h2 {
position:relative;
display:inline-block;
font:22px/22px DinWebCond,Sans-serif;
margin:0px;
padding:0px;
}

这是结果输出:

enter image description here

不太确定在这里做什么。

最佳答案

代替:

.clubprofilecard h3 a span
{
white-space:nowrap;
float:left;
display:inline-block;
}

试试这个:

.clubprofilecard h3 a span
{
white-space:nowrap;
display:block;
}

关于html - 无法获得跨度以换行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33699054/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com