I'm trying to create a div in HTML and then in a separate style sheet. I'm giving the instruction to put a background of red on it.
For some reason, nothing is happening. Here is the code
<div id="Box">
<p class="special">Selection:</p>
<br />
<input type='submit' value='Submit' />
</div>
In my css file, I use this command
#Box {
background:red;;
}