I've gone through the tutorial multiple times, but I still struggle with figuring out how to properly implement the CSS according to the provided instructions.
While using Codepen and having the instructions in HTML, I find it challenging to translate the HTML into CSS when dealing with the 'span' element.
You can view what I have completed so far in the project by following this link (which is not much beyond the first class): https://codepen.io/tvanpelt/pen/LodgKd
<h3 id='id1'>Red text header!</h3>
<p class="class1">This paragraph should have a black background and yellow text</p>
<span class="class1">Black background and white text.</span>
<span>Blue background and white text.</span>
</div>
<div>
<h3>Red text header with Grey background!</h3>
<p>Green text with white background color</p>
<p id="id2">Green text, white background color</p>
</div>
I am looking for assistance in better understanding how to use the same class name as in HTML when converting it into CSS for proper functionality.