+ 2
Can anybody tell me why the footer is coming slightly above the bottom ....it should be full
2 ответов
+ 3
Some HTML elements by default have margin
In your code paragraph element with class "c" have 10px margin , to remove this margin add the following css
.c{
margin:0;
}
+ 1
Raju Thanks