Estoy programando la versión móvil de mi web, pero no sé a partir de qué ancho ya se considera tablet o celular.
¿Cómo puedo saberlo?
<style>
@media (max-width: 600px) {
.facet_sidebar {
display: none;
}
}
</style>
Estoy programando la versión móvil de mi web, pero no sé a partir de qué ancho ya se considera tablet o celular.
¿Cómo puedo saberlo?
<style>
@media (max-width: 600px) {
.facet_sidebar {
display: none;
}
}
</style>
yo por lo general utilizo este CSS base, y despues puedes ir agregando queries mas especificos de ser ne
/*
##Dispositivo = Desktops
##Resolucion = 1281pxo mayorresolusion desktops
*/
@media (min-width: 1281px) {
//CSS
}
/*
##Dispositivo = Laptops, Desktops
##Resolucion = B/w 1025px to 1280px
*/
@media (min-width: 1025px) and (max-width: 1280px) {
//CSS
}
/*
##Dispositivo = Tablets, Ipads (vertical)
##Resolucion = B/w 768px to 1024px
*/
@media (min-width: 768px) and (max-width: 1024px) {
//CSS
}
/*
##Dispositivo = Tablets, Ipads (horizontal)
##Resolucion = B/w 768px to 1024px
*/
@media (min-width: 768px) and (max-width: 1024px) and (orientation: horizontal) {
//CSS
}
/*
##Dispositivo = Tablets de baja resolucion y telefnos Mobiles (horizontal)
##Resolucion = B/w 481px to 767px
*/
@media (min-width: 481px) and (max-width: 767px) {
//CSS
}
/*
##Dispositivo = Mayoria de telefonos moviles (vertical)
##Resolucion = B/w 320px to 479px
*/
@media (min-width: 320px) and (max-width: 480px) {
//CSS
}
Los breakpoints comunes y que usa bootstrap 4 en adelante son los siguientes:
/* Escritorio extra grande */
@media only screen and (min-width: 1200px){
}
/* Escritorio grande */
@media only screen and (min-width: 992px) and (max-width: 1199px){
}
/* Escritorio pequeño / tablet */
@media only screen and (min-width: 768px) and (max-width: 991px){
}
/* Tablets y phablets */
@media only screen and (min-width: 576px) and (max-width: 767px){
}
/* Teléfonos */
@media only screen and (max-width: 575px){
}