0.2.0 • Published 7 years ago

bullet.css v0.2.0

Weekly downloads
3
License
ISC
Repository
github
Last release
7 years ago

bullet.css

Classes

  • work on li itself or its ul or ol to affect all children
  • only apply list-item display

.bullet-disc

  • sets list-style to disc

.bullet-circle

  • sets list-style to circle

.bullet-square

  • sets list-style to square

.bullet-none

  • sets list-style to none

Examples

ul example

<ul class="bullet-none">
  <li>item
  <li>item
</ul>

li example

<ul>
  <li class="bullet-none">item
  <li class="bullet-none">item
</ul>