yunaimatsu / yunai-hp

0 stars 0 forks source link

Make `<style>` part completely responsive with `@media` #5

Closed yunaimatsu closed 2 months ago

yunaimatsu commented 3 months ago
<style>
    @media only screen (width <= 300px){
   …
 }

    @media only screen (300px < width <= 600px){
   …
 }

    @media only screen (600px < width <= 900px){
   …
 }

    @media only screen (900px <= width){
   …
 }

</style>