Answers for "how to hide some content on small screen in bootstrap 5"

1

make element disappear on smaller screens in bootstrap

<div class="d-none d-md-block">
Something here
</div>
Posted by: Guest on June-28-2021
0

hide when small bootstrap

<div class="d-lg-none">hide on screens wider than lg</div>
<div class="d-none d-lg-block">hide on screens smaller than lg</div>
Posted by: Guest on October-14-2020

Code answers related to "how to hide some content on small screen in bootstrap 5"

Browse Popular Code Answers by Language