DIV响应式

@media only screen and (min- 100px) and (max- 640px) {
            div {
                 100px;
                height: 100px;
            }
        }

@media only screen and (min- 641px) and (max- 789px) {
            div {
                 200px;
                height: 200px;
            }
 }

  

原文地址:https://www.cnblogs.com/romanticcrystal/p/9952322.html