"Style Sheet"에 해당되는 글 - 1건

Post


CSS의 속성은 특별히 정해진 규칙이 있는 것은 아니지만, 일정한 규칙에 따라 작성하면 우선 CSS를 관리하기가 많이 편하답니다~


아래는 모질라에서 제안하는 CSS 속성 지정 순서입니다. (굵은 글자는 많이 쓰이는 속성들)

  1. display
  2. list-style
  3. position
  4. float
  5. clear
  6. width
  7. height
  8. margin
  9. padding
  10. border
  11. background
  12. color
  13. font
  14. text-decoration
  15. text-align
  16. vertical-align
  17. white-space
  18. other text
  19. content


다음은 위의 순서를 좀더 간략하게 비슷한 것끼리 묶어 정리해본 것입니다. 제가 사용하는 순서죠 ^^

  1. display
  2. list-style
  3. position
  4. float , clear
  5. width , height
  6. margin , padding
  7. border
  8. background
  9. color , font , text-decoration , text-align , vertical-align
  10. white-space , other text , content
▲ top