How to make a div up on a div?

China
November 18, 2007 10:20pm CST
A div contains some test,B div contains background picture,How to make Div A on the top of Div B?
1 response
@zhille (17)
• Serbia And Montenegro
1 Dec 07
put this in your CSS file, and change the names .a and .b to your divs .a{z-index: 100} /*this one should be on top*/ .b{z-index: 0} that should fix it, if not, then try with putting the z-index value in inverse order :)