Background Color In Css Not Showing Up
i have a problem with my  background color it's not showing up i want it to be red  here's the code https://jsfiddle.net/yPX5Q/22/ 0000 Update: the problem is fixed but i have anot
Solution 1:
There were a couple of things wrong or not taken into account.
Firstly,
background-image:red;
is not a correct css property.
Secondly, using absolute positioning on the internal divs removes them from the flow and so the parent collapses to have no height.
It's not clear why you are using absolute positioning but it's not recommended for general layout.
nav {
  position: relative;
  background-color: red;
}
#block1 {} #block2 {}<nav><divid="block1">blog d'actualités</div><divid="block2">Acceuil | Contact</div></nav>Solution 2:
You need to set a width and height to make it work. 
Post a Comment for "Background Color In Css Not Showing Up"