2017-01-16 1 views
4

예를 들어 모바일보기에서 DIV를 숨길 올바른 클래스를 semantic-ui 찾고 있습니다. 부트 스트랩에서 "visible-xs"와 "hidden-xs"를 쉽게 사용할 수 있습니다.semantic-ui 모바일보기 요소를 숨기기

는 그러나 의미 UI에 난 단지 "모바일 전용 그리드를"발견

답변

0

당신의 재정의 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/