I'm using semantic-ui CSS making for responsive, but it is not working on mobile view, here is my class.
<div class="computer only twelve wide column mobile only UI container tablet only ui container"></div>
So there is something wrong?
I'm using semantic-ui CSS making for responsive, but it is not working on mobile view, here is my class.
<div class="computer only twelve wide column mobile only UI container tablet only ui container"></div>
So there is something wrong?
UI
is capitalized after mobile only
. The class names are case sensitive.
On top of that, I think you want to use the markup like this:
<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>