I'm a beginner in HTML and I want to eliminate the space between the text in an h5 tag and the select options.
HTML
<h5>Text</h5>
<select style="width:180px">
<option value="0" selected="selected">Select option</option>
</select>
The provided code shows a noticeable gap between the two elements. I'm unsure which CSS property to use in order to get rid of the gap.