编译环境:IOS、web、安卓
@media handled and (min-width:100px) and (max-width:800px) {
.text-demo {
font-size: 90px;
color: #ff0000;
}
}
@media handled and (min-width:900px) and (max-width:1200px) {
/*当屏幕尺寸小于600px时,应用下面的CSS样式*/
.text-demo {
font-size: 90px;
color: green;
}
}
0 个回复