简体   繁体   中英

my responsive media query doesn't work in CSS code?

I am using media queries to change my website look at different sizes...

this is my HTML code

    <meta name="viewport" content="width=device-width, initial- 
       scale=1">
   <link rel="stylesheet" media="screen and (max-width: 600px)" 
       href="styles/style.css"/>

AND my CSS code

 @media screen and (max-widht: 650px) {
       .projects-grid{
           float: none;
           width: 100%;
           grid-template-columns: 100%;
         }
      }
 @media screen and (max-width: 650px) {
       .projects-grid{
           float: none;
           width: 100%;
           grid-template-columns: 100%;
         }
      }

you have a typo in your media query you wrote widht instead of width

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM