如果你正在開發一個網站,那么一個好看簡單的 CSS 列表樣式可以幫助你更好地展示你的內容。以下是一些我們推薦的簡單樣式:
/* 無序列表樣式 */ ul { list-style: none; padding-left: 0; } li { margin-bottom: 10px; padding-left: 15px; position: relative; } li:before { content: "?"; position: absolute; left: 0; } /* 有序列表樣式 */ ol { list-style: none; counter-reset: item; padding-left: 0; } li { margin-bottom: 10px; padding-left: 25px; } li:before { content: counter(item) "."; counter-increment: item; position: absolute; left: 0; }
使用這些樣式可以讓你的網站內容更加美觀,同時不影響用戶的閱讀體驗。當然,你也可以根據需要進行調整,讓你的列表樣式更符合你的設計風格。