I've been trying to get a form label to display at the top of my form by using CSS to set the display property to block. However, despite making sure that my CSS file is correctly linked, I'm not seeing any results. It's puzzling because I can adjust other styles without any issues. I'd love some insight on why this isn't working as expected. Thank you for your assistance!
'''
.reflectionForm label{
display: block;
font-size: 25px;
font-weight: normal;
color: green
}
'''
'''
function Reflection() {
return (
<div> Entry Page
<form class="reflectionForm">
<label for="newEntryId"> New Entry:
<textarea type="text" id="newEntryId" name="newEntryName" rows="30" cols="75"/>
</label>
</form>
</div>
);
}
'''