list-style-type
CSS Syntax
list-style-type: value;
Property Values
- disc - Default value. The marker is a filled circle
- armenian - The marker is traditional Armenian numbering
- circle - The marker is a circle
- cjk-ideographic - The marker is plain ideographic numbers
- decimal - The marker is a number
- decimal-leading-zero - The marker is a number with leading zeros (01, 02, 03, etc.)
- georgian - The marker is traditional Georgian numbering
- hebrew - The marker is traditional Hebrew numbering
- hiragana - The marker is traditional Hiragana numbering
- hiragana-iroha - The marker is traditional Hiragana iroha numbering
- katakana - The marker is traditional Katakana numbering
- katakana-iroha - The marker is traditional Katakana iroha numbering
- lower-alpha - The marker is lower-alpha (a, b, c, d, e, etc.)
- lower-greek - The marker is lower-greek
- lower-latin - The marker is lower-latin (a, b, c, d, e, etc.)
- lower-roman - The marker is lower-roman (i, ii, iii, iv, v, etc.)
- none - No marker is shown
- square - The marker is a square
- upper-alpha - The marker is upper-alpha (A, B, C, D, E, etc.)
- upper-latin - The marker is upper-latin (A, B, C, D, E, etc.)
- upper-roman - The marker is upper-roman (I, II, III, IV, V, etc.)
CSS blog jika ingin memberi list style berbentuk lingkaran/circle
list-style-type: disc;
list-style-image
CSS Syntax
list-style-image: none|url|initial|inherit;
Contoh CSS
list-style-image:url('http://blablabla.gif');Well, now to the point that makes the list style checklist on the blog post.
Live Demo like the top picture.
How to install in a template:
template> edit html> put the following CSS code above ]]></b:skin>
.post-body ul li,save the template and check the results. Good luck, hopefully blogger tutorials about making a list style checklist in the blog post helpful.
.post-footer ul li{margin-left:20px;list-style-image:url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjICW-YC4KcDobreFfEbI2F_8tGoSaPKBtYjvNYnA11O_RYjIblT35tUnkRGos6ILRxDVJGGonyyObaN7VHR3D2wn084VG_hVia6MkfTH8P2J3tnPvAe8MHryVY1SqIbAr02VDjePWBdKk/s1600/uncheck.gif);padding:.2em 0 .2em .5em}
.post-body ul li:hover,.post-footer ul li:hover{background-color:#fff;cursor:pointer;list-style-image:url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgWoBX-fcWIA82ZfFZM-dEQvOMibTCYN0HRbA_qcA-aCxJ0XkYiud38Iq_1rRqt_rUjTsYRuCG5CMLMsJTwzEHoa_CJYIaoFthyjDl6GGMvcyhNOVoZlHi6FcJ41vJvwvkk5XqG4LrdiwA/s1600/check.gif);border:1px dotted #ccc}