我正在使用语义UI CSS进行响应,但是在移动视图上不起作用,这是我的课程。
<div class="computer only twelve wide column mobile only UI container tablet only ui container"></div>
所以有什么问题吗?
最佳答案
UI
在mobile only
之后大写。类名区分大小写。
最重要的是,我认为您想像这样使用标记:
<div class="computer only twelve wide column">
<!-- computer only stuff -->
</div>
<div class="mobile only ui container">
<!-- mobile only stuff here -->
</div>
<div class="tablet only ui container">
<!-- tablet only stuff here -->
</div>