1
居中水平div和span元素這裏的鏈接JS小提琴:JS Fiddle如何使用CSS
我試圖讓我的邊框和圖標horizontally
頁面的中心。背景顏色爲#f30
。
但eveything似乎只留在左側。我在這裏嘗試了幾篇文章,但他們似乎並沒有工作,也檢查了谷歌更多,但似乎沒有解決它。
這裏是爲您檢查HTML:
<div id ="heading_layout" class="section-1">
<span class="d"><span class="icon"></span></span>
</div>
這裏是爲您檢查CSS:
#heading_layout {
margin-top: 30px;
width: 100%;
text-align: center;
background: #f30;
}
.section-1 span.d:before {
float: left;
content: '';
width: 10%;
height: 1px;
border-bottom: 2px dashed #8000ae;
}
.section-1 span.d:after {
position: relative;
right: 0px;
float: left;
top: 100%;
content: '';
width: 10%;
height: 1px;
border-bottom: 2px dashed #8000ae;
}
span.icon {
position: relative;
margin-left: 15px;
margin-right: 15px;
margin-top: -14px;
height: 30px;
width: 30px;
border-radius: 50%;
float: left;
background:
#8000ae url('')
3px 3px no-repeat;
}
這裏的鏈接JS小提琴:JS Fiddle
感謝。
真棒隊友和感謝評論!提出了很多意義:)解決了我的問題。謝謝! :) – pv619
不客氣:) –