When I put unordered list
http://jsfiddle.net/fL
use this for removing padding
and margin
which is given by browsers
*{
margin:0;
padding:0;
}
you will get more information on reset css here
here are the list of css styles used to reset
http://www.cssreset.com/
The ul element has margin-top by default from browser. To remove that, add the style
ul {
margin-top: 0;
}