+ 1
Background is not working,why\\\
2 Answers
+ 1
Try to remove or comment the CSS rule:
li { float:left; }
+ 1
Use the clearfix hack:
ul::after {
content: "";
clear: both;
display: table;
}
(https://www.w3schools.com/css/css_float.asp)