我正在开发一个新网站,并在我的css文件中设置了一个宽度。我要求使网站具有适应性和可调整大小,以适应较小的手机屏幕和各种平板电脑设备。
我的css样式中必须设置哪些内容才能使网站最适合其他屏幕尺寸?
答案 0 :(得分:4)
您需要使用媒体查询。这是响应式设计的全部基础。
@media only screen and (max-device-width: 480px) {
/* write smartphone styles here */
}
@media only screen and (max-device-width: 768px) {
/* tablets in portrait mode */
}
@media only screen and (max-device-width: 1024px) {
/* tablets in landscape mode and smaller/older monitors */
}