Amazing List namber style dengan CSS
Publish Date : 12-03-2016 , dibaca 4846 kali, Hari ini dibaca : 1 kali ,0 comments
Pada artikel ini kita akan Membuat style pada list nomor dengan css , List nomor pada halaman web biasanya digunakan untuk membuat list 1,2,3 dengan menggunakan tag <ol> pada HTML, nah saat ini kita akan memberikan style pada list namber dengan menggunakan css.
Sebelum kita memulai , bagi temen2 yang belum baca artikel saya sebelumnya, silahkan dibaca dulu ya :
Google Material Design Form input Style dengan CSS
Ok, Mari kita mulai membuat style nomor dengan CSS
Code HTML
<ol class="custom-counter">
<li>This is the first item</li>
<li>This is the second item</li>
<li>This is the third item</li>
<li>This is the fourth item</li>
<li>This is the fifth item</li>
<li>This is the sixth item</li>
</ol>
Code CSS
<style>
.custom-counter {
margin: 0;
padding: 0;
list-style-type: none;
}
.custom-counter li {
counter-increment: step-counter;
margin-bottom: 10px;
}
.custom-counter li::before {
content: counter(step-counter);
margin-right: 5px;
font-size: 80%;
background-color: rgb(0,200,200);
color: white;
font-weight: bold;
padding: 3px 8px;
border-radius: 3px;
}
</style>
Nah, Untuk Melihat Hasilnya anda bisa mengkilik link demo dibawah ini, atau anda bisa download Style list nomor dengan CSS ini