标签: css mobile
答案 0 :(得分:0)
在这种情况下,您可以使用媒体查询。如果您想在桌面上定位用户:
@media screen { /* hover styles here */ }
如果你想定位移动设备,例如ipad,你可以使用它:
@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) { /* non-hover styles here */ }