Cita:
Iniciado por herzbazi claro que es correcto de hecho si vas a leer bootstrap te daras cuenta que asi se usa
medidas de bootstrap
Extra small devices Phones (<768px)
Small devices Tablets (≥768px)
Medium devices Desktops (≥992px)
Large devices Desktops (≥1200px)
estas medidas son las que tienes que usar dentro de cada mediaquerie así es como deberia de funcionar chica. para cada uno de los dispositivos no importando que tipo de dispositivo sea.
aqui van otras pero si usas las de arriba saldra todo muy bien ,
Código CSS:
Ver original@media (min-width: 1200px) { ... }
/* Portrait tablet to landscape and desktop */
@media (min-width: 768px) and (max-width: 979px) { ... }
/* Landscape phone to portrait tablet */
@media (max-width: 767px) { ... }
/* Landscape phones and down */
@media (max-width: 480px) { ... }
/* Smartphones (portrait and landscape) ----------- */
@media only screen and (min-device-width : 320px) and (max-device-width : 480px) { }
/* Smartphones (landscape) ----------- */
@media only screen and (min-width : 321px) { }
/* Smartphones (portrait) ----------- */
@media only screen and (max-width : 320px) { }
/* iPads (portrait and landscape) ----------- */
@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) { }
/* iPads (landscape) ----------- */
@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) and (orientation : landscape) { }
/* iPads (portrait) ----------- */
@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) and (orientation : portrait) { }
/* Desktops and laptops ----------- */
@media only screen and (min-width : 1224px) { }
/* Large screens ----------- */
@media only screen and (min-width : 1824px) { }
/* iPhone 4 and high pixel ratio devices ----------- */
@media
only screen and (-webkit-min-device-pixel-ratio : 1.5),
only screen and (min-device-pixel-ratio : 1.5) { }
sabes usar bootstrap , es muy bueno para ahorarte trabajo. si no pues te puedo dar unos video cursos muy buenos donde te enseñan las bases y algo de nivel medio tambien duran como 3 horas cada uno .
Muchísimas gracias herzbazi, por todo.
Pero ahora hay otro problema, al poner el horizontal el móvil sale la versión de escritorio.