css3怎样实现屏幕自适应

css3怎样实现屏幕自适应

* 打印样式 *@media print {color: red}* 手机等小屏幕手持设备 *@media screen and (min-width: 320px) and (max-width: 480px) {body {ba
html-css260