runeveryday
runeveryday

Reputation: 2799

html---why the background can't position at the left top?

this is the site.

i use the style

 #idc {
 background: transparent url('../images/idbg.jpg') no-repeat left top ;
 margin:0 auto;
width: 900px;

}

why the image can't position at the 0 0 place?

Upvotes: 0

Views: 85

Answers (2)

eyelidlessness
eyelidlessness

Reputation: 63519

It is. The image has whitespace in the top and left. See: http://newsletter.idcspy.com/images/idcbg.jpg

Upvotes: 2

danjah
danjah

Reputation: 3059

background: transparent url('../images/idcbg.jpg') left top no-repeat;

Try that first!

Upvotes: 0

Related Questions