“écran médiatique” Réponses codées

Query Media Min et Max

/* Max-width */
@media only screen and (max-width: 600px)  {...}

/* Min-width */
@media only screen and (min-width: 600px)  {...}

/* Combining media query expressions */
@media only screen and (max-width: 600px) and (min-width: 400px)  {...}
Collared Lizard

requête médiatique

@media only screen and (max-width: 600px) {
  body {
    background-color: lightblue;
  }
}
Collared Lizard

CSS Media Requête

/* BOOSTRAP MEDIA BREAKPOINTS */
/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {  
  .selector {
  	background-color:#f00;
  }
}
/* Medium devices (tablets, 768px and up) The navbar toggle appears at this breakpoint */
@media (min-width: 768px) {}
/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {}
/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {}
gtamborero

Query média min max

@media screen and (min-width: 200px) and (max-width: 640px) {
  .bloc {
    display:block;
    clear:both;
  }
}
Anass Azeroual

écran médiatique

/*display mobile when the browser window is 991px width or less*/
@media only screen and (max-width: 991px){
  	// example
    .mobile{
        display: block;
    }
}
Apollo

Réponses similaires à “écran médiatique”

Questions similaires à “écran médiatique”

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code