I have written a code to display a tree structure and I want the text to be in Black color. However, it is appearing in White color, even though I did not mention white anywhere. In the body section, I clearly specified black color but it is still showing as white. How can I resolve this issue?
Here is a snippet of my code:
<div class="pagecontainer">';
echo "<ul id='treeMenu'>";
echo "<li class='contentContainerMain'>";
echo "<ul style='display: none'>";
echo "<li class='contentContainer'>";
echo "</li>";
echo "<ul >";
echo "<li class='contentContainer'>";
echo "</li>
echo "</ul>";
echo "</ul>";
echo "</li>
echo "</ul>
echo "</div>";<!-- END TREE MENU -->";
My CSS code is as follows:
[CSS CODE HERE]