什么是iOS 5.0用户代理字符串?
这是iOS 4.0用户代理:什么是iPhone 4用户代理?
什么是iOS 6.0用户代理字符串?
以前的用户代理字符串:
问题:我的图像在除iphone之外的所有平台都有响应.
在该网站的iPhone版本,它正在炸毁图像,我不确定.
我认为以下内容可以解决除IPHONES和IPADS之外的其他问题
#homepage .carousel .item {
height: auto !important;
}
#homepage .carousel .item img {
min-width: 100% !important;
max-width: 100% !important;
height: auto !important;
position: relative !important;
}
.carousel-indicators {
bottom: 2%;
}
Run Code Online (Sandbox Code Playgroud)
话虽如此,我还发布了我所做的其余css,以使其响应不同的大小:
/***TEST 1.2***/
#homepage .carousel .item {
height: auto !important;
}
#homepage .carousel .item img {
min-width: 100% !important;
max-width: 100% !important;
height: auto !important;
position: relative !important;
}
.carousel-indicators {
bottom: 2%;
}
@media screen and (max-device-width: 375px) and (max-device-height: 667px) {
#homepage .carousel …Run Code Online (Sandbox Code Playgroud)