Advertisement
bolo17

W3.CSS Built-In Responsiveness

Aug 25th, 2020
227
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.00 KB | None | 0 0
  1. W3.CSS Built-In Responsiveness
  2. W3.CSS includes a responsive, mobile-first grid system to handle layout:
  3.  
  4. 1/2. 1/2. 1/3. ...
  5. 1/4. 1/4. 1/4. ...
  6. 3/4. 1/4. 1/4. ...
  7. 50px. rest. 1/4. ...
  8. This part will occupy 12 columns on a small screen, 4 on a medium screen, and 3 on a large screen. This part will occupy 12 columns on a small screen, 8 on a medium screen, and 9 on a large screen.
  9. W3.CSS Responsive Classes
  10. w3-half Occupies 1/2 of the window (on medium and large screens)
  11. w3-third    Occupies 1/3 of the window (on medium and large screens)
  12. w3-twothird Occupies 2/3 of the window (on medium and large screens)
  13. w3-quarter  Occupies 1/4 of the window (on medium and large screens)
  14. w3-threequarter Occupies 3/4 of the window (on medium and large screens)
  15. w3-rest Occupies the rest of the column width
  16. w3-col  Defines one column in a 12-column responsive grid
  17. w3-mobile   Adds mobile-first responsiveness to a cell (column).
  18. Displays elements as block elements on mobile devices.
  19. get link:https://ouo.io/gUxnXl
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement