@media screen and (max-width: 769px) { .wfull { max-width: 100vw; width: 100vw; position: relative; right: 22.5px; display: flex; } } @media screen and (max-width: 541px) { .wfull { right: 18px; } } @media screen and (max-width: 361px) { .wfull { right: 16px; } }Ejemplo de una imagen expandida a todo el ancho de la pantalla del móvil con CSS.
.wfull { max-width: 780px; width: 780px; position: relative; right: 21px; display: flex; }La diferencia es que los valores de las propiedades "max-width" y "width" se establecen en pixeles, no en "vw" como en el método empleado para dispositivos portables.
body { background: url(imagenes/fondo.png) no-repeat center center fixed; background-size: cover; -moz-background-size: cover; -webkit-background-size: cover; -o-background-size: cover; }
body:after{ content:""; position:fixed; top:0; height:100vh; left:0; right:0; z-index:-1; background: url(fondo-jijira.jpg) center center; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover; }Este código es usado en esta misma página y se puede aplicar de forma dinámica usando el siguiente botón, el CSS es inyectado con JavaScript.