Miles' Blog

天涯何處無幹話,何必要講實務話

CSS

Coding style

Coding style 提到的屬性分組:

  • Positioning - 物件位置相關的屬性
    • position
    • top
    • right
    • bottom
    • left
    • z-index
  • Box Model | 物件 Box 相關的屬性
    • display
    • float
    • width
    • height
    • margin
    • padding
    • border
  • Typographic | 直譯是印刷,看了一下相關文章,應該是與排版相關的東西
    • font
    • line-height
    • color
    • text-align
  • Visual | 視覺
    • background-color
    • border-radius
  • Misc. | miscellaneous 雜項
    • opacity
    • etc

Styling List

http://www.w3schools.com/css/css_list.asp

Property Value Description
list-style list-style:square url(“list.gif”) 設定所有 list-sytle 的屬性
list-style-image list-style-image: none url
list-style-position list-style-position: inside outside
list-style-type
0%