#每天一个知识点# 利用@media规则来匹配不同设备;比如设置当屏幕宽度小于600px时背景色置为红色:@media only screen and (max-width: 600px){background-color:red;}
评论