martedì 17 ottobre 2017

Media Query!!! how it works ...for me :)

REMINDER :)

hi to all, .... that's a fast post

/* Higher Than  767px WORK*/
@media screen and (min-width: 767px) { body{ background-color: red;    }}
/* Higher Than  968px WORK*/
@media screen and (min-width: 968px) { body{ background-color: yellow; }}




/*Lower Than 768px Work*/
@media screen and (max-width: 768px) { body{ background-color: blue;    } }
/*Lower Than 567px Work*/
@media screen and (max-width: 567px) { body{ background-color: white;    } }


bye

Nessun commento:

Posta un commento