Is there an optimized method for adjusting the spacing between specific block elements? I have multiple instances of this issue.
<div id="head1" class="global-box">
<p>My Header Name</p>
<select id="Select1">
<option></option>
</select>
</div>
The challenge lies in the excessive space between "My Header Name" and the select element. Removing the <p>
tag results in them being aligned on the same line.
Using <br/>
seems to create a block element, which may not be the desired outcome.