Is there a way to target only the first div with a specific class in a series of divs with the same name using CSS? Here is an example scenario:
<div class="div">dsdas</div>
<div class="div">123</div>
<div class="div">73</div>
<div class="div">63</div>
<div class="div">53</div>
<div class="div">45</div>
How can we select only the first div with the class of "div"?