bootstrap 弹窗阅读全文→
@media screen and (max-width: 300px) { //当小于300PX的时候,网站背景变浅蓝色 body { background-color:lightblue; } }
@media (min-width: 768px) { //当小于300PX的时候,网站背景变蓝色
body { background-color:blue; }
}
Thinkphp