我想仅为手机用户而不是桌面用户显示超链接。这是这样做的吗?
@media screen and (min-width: 480px)
{
<a href="xxxxx"> Test <\a>
}
答案 0 :(得分:1)
请注意,我使用min-device-width
as opposed to min-width
.使用适合您项目的内容。
像这样的东西
a.mobile-only {display: none;}
@media screen and (min-device-width: 480px) {
a.mobile-only {display: inline;}
}
答案 1 :(得分:1)
没有。您不希望将CSS添加到CSS,它将无法正常工作。
HTML:
<a class="formobile" href="0000000"> Phone # </a>
CSS:
a.formobile { display: none; }
@media screen and (min-width: 480px) {
a.formobile { display: block; /* or display: inline-block; or display: inline; depending upon surrounding markup */ }
}