Skip to content

zimindev/webdev-css-media

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 

Repository files navigation

/* Regular desktop site */ 
@media (max-width: 1200px)
.container
  width: 1140px

/* Small computer or horizontal tablet */
@media (max-width: 1199px)
.container
  width: 960px

/* Vertical tablet */
@media (max-width: 991px)
.container
  width: 720px

/* Horizontal phone */
@media (max-width: 767px)
.container
  width: 540px

/* Vertical phone */
@media (max-width: 575px)
.container
  width: 100%

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published