“Comment spécifier CSS pour un petit écran” Réponses codées

Comment spécifier CSS pour un petit écran

@media only screen and (max-width: 991px) and (min-width: 769px){
 /* CSS that should be displayed if width is equal to or less than 991px and larger 
  than 768px goes here */
}

@media only screen and (max-width: 991px){
 /* CSS that should be displayed if width is equal to or less than 991px goes here */
}
Ill Impala

CSS pour une taille d'écran plus grande

@media screen and (min-width: 1400px) {
  .container {
    width: 1370px;
  }
}
@media screen and (min-width: 1600px) {
  .container {
    width: 1570px;
  }
}
@media screen and (min-width: 1900px) {
  .container {
    width: 1870px;
  }
}
Difficult Dingo

Réponses similaires à “Comment spécifier CSS pour un petit écran”

Questions similaires à “Comment spécifier CSS pour un petit écran”

Plus de réponses similaires à “Comment spécifier CSS pour un petit écran” dans CSS

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code