what I should write to hide/remove this block and create a space for < xl devices. http://prntscr.com/iw1fm7 As you see on screenshot,it works good for > 1200px,and I want to remove the central part for < 1200px and create a space for right block https://prnt.sc/iw1evv I mean this.What I should write?
Asked
Active
Viewed 172 times
1 Answers
0
To hide an element in bootstrap 4 you may do not have to write custom css but just use the responsive utility classes:
<div class="d-none d-xl-block">
I'm only visible for XL displays and hidden for everything below XL
</div>
This will hide the block for all but display it as block in xl and above.
Example: https://plnkr.co/edit/JIpnQyJDBD2u1D3nRiRU?p=preview

Capricorn
- 2,061
- 5
- 24
- 31