【发布时间】:2019-08-15 05:09:41
【问题描述】:
我发现以下 CSS 代码粘贴在子主题的 css 样式表中,但它不起作用。
/* Mobiles in Potrait mode */
@media only screen
and (max-width : 320px) {
.widget-area {
float: left;
width: 100%;
background: #E3E3E3;
}
}
/* Mobiles in landscape mode */
@media only screen
and (min-width : 321px)
and (max-width : 480px) {
.widget-area {
float: left;
width: 100%;
background: #E3E3E3;
}
}
你可以查看我的WP website
【问题讨论】:
标签: css wordpress responsive sidebar