我的网站上有一些标签。我想要的是在较小的屏幕(手机)上隐藏其中一个标签。在使用类时我只使用效果很好的hidden-xs
,但使用li role="presentation">
我无法使用它。我正在使用最新版本的twitter-bootstrap
有什么想法吗?
答案 0 :(得分:1)
我明白了:
刚给了标签,然后是
@media only screen and (max-width: 599px) {
#map-tab {
display: none;
}
}