While working with bootstrap 4, I found that my headers were not displaying in a single line as expected. Instead, the next content was getting displayed with the header tag without any line breaks. What could be causing this issue?
I have double-checked to ensure that the header tags are properly closed.
<div class="row"> <h2>Expertise</h2> <p>Php, html5, css3, wordpress, </p> </div>
The desired output should look like the code above, with each element on its own line. However, what I'm seeing is everything displayed in one line with different font sizes. The "Expertise" header appears larger than the rest of the content.
Unexpected Output: Expertise Php, html5, css3, wordpress,