Skip to content

Instantly share code, notes, and snippets.

@morjuax
Created December 21, 2020 15:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save morjuax/7078abbc1d3634b11a192acd8d770ae7 to your computer and use it in GitHub Desktop.
Save morjuax/7078abbc1d3634b11a192acd8d770ae7 to your computer and use it in GitHub Desktop.
Break Point Responsive css
/* RESPONSIVE
========================================================================= */
/* Tablets en horizonal y escritorios normales
------------------------------------------------------------------------- */
@media (min-width: 768px) and (max-width: 1199px) {
}
/* Móviles en horizontal o tablets en vertical
------------------------------------------------------------------------- */
@media (max-width: 769px) {
}
/* Móviles en vertical
------------------------------------------------------------------------- */
@media (max-width: 480px) {
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment