Answer to Question #287238 in HTML/JavaScript Web Application for steeven

Question #287238

lets build a logos section by applying the concepts till now


medium(size >= 768px), large (size >= 992px) and extra llarge(size > 1200px)


image names:

#slack NETFLIX fitbit google airbnb uber


1
Expert's answer
2022-01-13T07:47:17-0500
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
body {
  background-color: lightgreen;
}


@media only screen and (max-width: 768px) {
  body {
    background-color: blue;
  }
}
@media only screen and (max-width: 992px) {
  body {
    background-color: red;
  }
}
@media only screen and (max-width: 1200px) {
  body {
    background-color: green;
  }
}

</style>
</head>
<body>


<p>Hello, World!</p>


</body>
</html>



Need a fast expert's response?

Submit order

and get a quick answer at the best price

for any assignment or question with DETAILED EXPLANATIONS!

Comments

No comments. Be the first!

Leave a comment

LATEST TUTORIALS
New on Blog
APPROVED BY CLIENTS