用于移动视图的semantic-ui hide元素

时间:2017-01-16 18:57:30

标签: semantic-ui responsive

我正在寻找semantic-ui正确的类来隐藏例如移动视图中的DIV。在Bootstrap中它很简单,我们有“visible-xs”和“hidden-xs”。

但是在语义上我只发现了“仅移动网格”

1 个答案:

答案 0 :(得分:1)

请访问此处,只需添加到您的覆盖css文件

/* Mobile */

@media only screen and (max-width: 767px) {
[class*="mobile hidden"],
[class*="tablet only"]:not(.mobile),
[class*="computer only"]:not(.mobile),
[class*="large monitor only"]:not(.mobile),
[class*="widescreen monitor only"]:not(.mobile),
[class*="or lower hidden"] {
display: none !important;
}
}
etc...

https://jsfiddle.net/8LkLoxcx/