Answers for "css media query in style tag"

CSS
1

media query css

@media only screen and (max-width: 768px) { }
Posted by: Guest on August-11-2021
0

media query in css

/* So me write a media query like this */
@media screen and (min-width:746px){
  /* here we will add the stles we want
  for the screen with min -width of 746 px*/
}
/* we can also use something like*/
@media print and (min-width:1024px){
}
/* Here print is for what we will see if we print whats on the screen*/
Posted by: Guest on December-16-2021
2

media query css

media screen and (min-width: 1300px) {
media screen and (min-width: 400px) and (max-width: 700px) {
Posted by: Guest on September-22-2021

Browse Popular Code Answers by Language