gpt4 book ai didi

twitter-bootstrap-3 - 在 Bootstrap 3 中根据屏幕大小加载图像

转载 作者:行者123 更新时间:2023-12-04 08:08:58 25 4
gpt4 key购买 nike

我正在将 Boot Strap 3 用于我的新响应式布局。对于我的主页,我有背景图片。请建议如何根据屏幕分辨率使用不同的背景图像。我不能使用响应式类。请使用以下 URL 查看布局。

http://idea66.com/mobile/screenshot.png

如果我为不同的屏幕类型创建这个结构,我们如何使用 Boot Strap 3.0 调用它们

谢谢
莫妮卡

最佳答案

您可以拥有 CSS with media queries .例子:

@media (max-width: 979px) {

body {
background: white url(medium.jpg);
}

}

@media (max-width: 767px) {

body {
background: white url(small.jpg);
}

}

关于twitter-bootstrap-3 - 在 Bootstrap 3 中根据屏幕大小加载图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20858760/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com