Search code examples
cssmobileskeleton-css-boilerplate

Skeleton CSS - hiding content from mobiles


I have used Bootstrap extensively and regularly used the css classes to hide various elements from mobile view. Does Skeleton CSS have a similar thing for hiding content on a mobile?


Solution

  • Used a media query example below:

    @media only screen and (max-width: 500px) { .someStyle { background-color: display: none; } }