Hi everyone,
I am new to coding and have a really simple question that I can't figure out. In the following code below, how can I select the first paragraph but NOT the second in CSS? I want to make some manipulation to the first pargraph only! I've tried nth-child(1) but it's not working. Please help!
<div class="about" id="about">
<div class="container">
<h1>Who Am I?</h1>
<img src="images/MyFace.jpg">
<p>paragraph1</p>
<p>paragraph 2!</p>
</div>