I was wondering why the following isn\'t working - whereby xs is hidden in xs views. I feel it is something to do with changes introduced in Bootstrap v4, but I was wonderin
EDIT the hidden-* properties are removed from the bootstrap beta 4.
You need to use the d-*-none (*= xl, sm, md, lg). Link
For example:
the class d-none will allow you something to be invisible on every screen.
the class d-sm-none: will not be visible for small devices.
the class d-md-none: will not be visbile for medium devices.
the class d-lg-none: will not be visbile for large screen devices devices.
For you, need to write this.
Some text here.
Start with d-none add the screen that you want with d-*-block.
Example if you want to display for md only, you should write class="d-none d-md-block".