I am facing an issue trying to position a plus sign next to an h3 tag. The plus sign currently appears above the h3 tag, causing annoyance. I have attempted various methods like adjusting margin, padding top, and line-height, but the alignment remains off. How can I get both elements to align on the same line properly? Specifically, I want to address this line of code:
<h3 class="second-section-right-part-h3"><span class="plus alt"></span> Sub-Affiliation</h3>
Here is my HTML: `
* {
padding: 0px;
margin: 0px;
}
.nav {
display: flex;
justify-content: center;
align-items: center;
justify-content: space-evenly;
width: 100%;
height: 50%;
}
<!-- Remaining CSS code here -->
<div class="main-container">
<!-- Remaining HTML code here -->
</div>