I've used Bootstrap 4 in a new online project of mine. I mainly aim at mobile use but want to make it accessible for desktop users.
I have some textst i'd like to hide on medium screens only with predefined classses, but somehow I can't get it to work. Sloppy workaround works but is sloppy: (should illustrate what I'm trying to achieve) :
<span class="hidden-sm-up">Display: </span>
<span class="hidden-md-down">Display: </span>
Of course this is bad coding, but I can't seem to find teh right combination of classes to only hide at medium screens. (I would expect a class like .hidden-md
but no...)
Any help would be greatly appreciated.
Best,
knal