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?
Used a media query example below:
@media only screen and (max-width: 500px) { .someStyle { background-color: display: none; } }