Skip to content

Latest commit

 

History

History
22 lines (16 loc) · 391 Bytes

RWD.md

File metadata and controls

22 lines (16 loc) · 391 Bytes

RWD (Responsive Web Design)

網頁範本

https://html5up.net/

RWD 原則

  • 能用 flexbox 就用 flexbox 處理
  • 不能用 flexbox 就用 media query 處理
    /* example */
    @media screen and (max-width: 612px) {
      nav ul {
        flex-direction: column;
      }
    }

Bootstrap

https://getbootstrap.com/