CSS Media Query min-width not working correctly

前端 未结 3 564
别跟我提以往
别跟我提以往 2021-01-04 10:59

I have a HTML like:




        
3条回答
  •  天命终不由人
    2021-01-04 11:27

    @media (min-width: 1000px) and (max-width: 1200px) {
    
     input {
            background-color: green;
        } 
    
    }
    

    This works, but make sure you check the zooming. (I got this answer from the comments, as it seems this is the big catch around here.. I fell for it too)

提交回复
热议问题