Below is the HTML code I am using:
<div class="ObjectList" id="ObjectList">
<p class="ObjectListTitle" id="Element">TEST</p>
</div>
The CSS is applying properly to the ObjectList class but is not working for the ObjectListTitle class.
Here is the content of my CSS file:
#ObjectList{
background-color:red;
height:100%;
width:25%;
}
#ObjectListTitle{
background-color:yellow;
}