One issue I've noticed with Bootstrap 4 is that using display/hidden classes like "d-md-none" and "d-none d-sm-block" can cause unexpected line breaks, disrupting the design of my website. Is there a way to avoid this problem?
For example, I want the footer to hide "2014-" on smaller screens and only display ©2019. The HTML code below is what I'm currently using:
©<span class="d-none d-sm-block">2014-</span>2019
However, the footer layout ends up looking jumbled, with "©", "2014-", and "2019" split across three lines. How can I address this issue and eliminate the line break caused by Bootstrap 4's display/hidden classes? Any assistance is appreciated...