2017-05-06 183 views
2

我在顯示項目符號列表時出現問題,如圖像附件鏈接上的內容。我已經嘗試過幾乎可以CSS組合,但無法達到我想要什麼:enter image description here顯示項目符號集中列表

我的代碼是這樣的:

.sunco-listed { 
 
    width: 500px; 
 
} 
 

 
.sunco-listed ul { 
 
    text-align: center; 
 
} 
 

 
.sunco-listed li { 
 
    float: left; 
 
    padding-right: 25px; 
 
} 
 

 
.sunco-listed li:nth-child(1) { 
 
    list-style: none; 
 
}
<div class="sunco-listed"> 
 
    <ul> 
 
    <li>Spare parts 1</li> 
 
    <li>Spare parts 1</li> 
 
    <li>Spare parts 1</li> 
 
    <li>Spare parts 1</li> 
 
    <li>Spare parts 1</li> 
 
    <li>Spare parts 1</li> 
 
    <li>Spare parts 1</li> 
 
    <li>Spare parts 1</li> 
 
    </ul> 
 
</div>

任何援助/幫助將不勝感激。

回答

0

父將保留列表項子彈,用justify-content: centerflex-wrap: wrapflex所以他們會在有限的寬度包裹,然後用:first-child:last-child第一/最後的效果。

.sunco-listed { 
 
    width: 500px; 
 
} 
 

 
.sunco-listed ul { 
 
    justify-content: center; 
 
    display: flex; 
 
    flex-wrap: wrap; 
 
} 
 

 
.sunco-listed li { 
 
    padding-right: 25px; 
 
} 
 

 
.sunco-listed li:first-child { 
 
    list-style: none; 
 
} 
 

 
.sunco-listed li:last-child { 
 
    font-weight: bold; 
 
}
<div class="sunco-listed"> 
 
    <ul> 
 
    <li>Spare parts 1</li> 
 
    <li>Spare parts 1</li> 
 
    <li>Spare parts 1</li> 
 
    <li>Spare parts 1</li> 
 
    <li>Spare parts 1</li> 
 
    <li>Spare parts 1</li> 
 
    <li>Spare parts 1</li> 
 
    <li>Spare parts 1</li> 
 
    </ul> 
 
</div>

+0

您好,感謝您的意見/幫助。這是使用Flexbox嗎?儘管如此,我沒有任何經驗/知識。但聽到很多好的意見。 –

+0

@BryLedesma是的,這裏有一個很好的指南https://css-tricks.com/snippets/css/a-guide-to-flexbox/ –

+0

哦,謝謝你對flexbox的有用資源了。在我有空的時間裏,我也會看看這個。 –

相關問題