gpt4 book ai didi

html - 移动设备的准确横幅图像大小可响应不同设备

转载 作者:行者123 更新时间:2023-12-01 23:15:54 24 4
gpt4 key购买 nike

如何处理响应不同设备(如中小型手机和平板电脑)的横幅图像?

最佳答案

  1. Width:
.banner
{
max-width: 100%;
height: auto;
}
  1. Media Query:
    @media only screen and (min-width: 960px) {
.banner
{
width: 960px
height: auto;
}
@media only screen and (min-width: 1440px) {
.banner
{
width: 1440px
height: auto;
}
}
@media only screen and (min-width: 2000px) {
.banner
{
width: 2000px
height: auto;
}
}
@media only screen and (max-device-width: 480px) {
.banner
{
width: 480px
height: auto;
}
}
@media only screen and (device-width: 768px) {
.banner
{
width: 768px
height: auto;
}
}

关于html - 移动设备的准确横幅图像大小可响应不同设备,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59728373/

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