【发布时间】:2021-04-17 23:20:07
【问题描述】:
我可以在手机上使用它,但桌面文本显示在平板电脑上。
@media all and (min-width: 768px) {
.mobile {
display: none !important;
}
}
@media all and (max-width: 767px) {
.desktop {
display: none !important;
}
}
<h1 class="desktop">Desktop</h1>
<h1 class="mobile">Mobile</h1>
【问题讨论】:
标签: html css mobile-website