[英]Apply CSS rule only on computer screens, not on mobile and tablet
我的标题中有一个太小的徽标。 我发现这段代码可以增加大小,但我只希望它适用于计算机屏幕而不是手机或平板电脑。 代码是:
.site-title img {max-width:100%; height:auto}
.site-description {display:none}
我想将100%
更改为200%
但仅在计算机屏幕上。
有人可以告诉我是哪个代码使这种情况发生的吗?
响应式网页设计,使用媒体查询:
@media screen and (min-width: 800px) {
// this css will only be used when the screen size is min 800px
}
媒体查询用于将CSS规则仅应用于匹配的设备。 指定要应用样式规则的max-width
或min-width
。
@media screen and (min-width: 720px) {
body {
background-color: skyblue;
}
}
你有没有尝试过:
.site-title img {
max-width:100%;
width:0 auto;
height:0 auto;
}
您是否也在尝试使其适合手机屏幕,或者我不太了解您。
声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.