Skip to content
Deepsingh edited this page Dec 10, 2024 · 1 revision
<title>Media Queries</title>
<style>
  div{
    width: 100px;
    height: 100px;
    border: 2px solid gray;
    background-color: yellow;
    margin: 20px;
    padding: 20px;
    display: inline-block;
  }
  @media (min-width:0px) and (max-width:500px) {
    div{
      background-color: red;
      display: block;
      margin: 30px auto;
    }
  }
  @media (min-width:501px) and (max-width:800px) {
    div{
      background-color: green;
      display:inline-block;
      margin: 30px ;
    }
  }
</style>

Clone this wiki locally