0
我無法讓我的跨度去換新線。他們應該坐在旁邊的圖像無法獲得跨度去換新線
這裏是我的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;
}
,這裏是輸出結果:
不太確定在這裏做什麼。
,跨度是內嵌其中DIV是塊元素。 – DivineChef