TheCandyman
Technical User
I'm trying to work on the old issue of getting two Div on the same line. Each div has an image to show, which i need to make them appear there is no break between them, unless there is a better way to get this to work? I don't really want to have to do a table showing the images. Currently it only shows the Wave_L
Code:
#Wave_L {
background: url('images/02.gif') no-repeat left top;
width:838px;
height:111px;
z-index:1;
display:inline;
}
Wave_R {
background: url('images/03.gif') no-repeat right top;
width:177px;
height:111px;
z-index:2;
display:inline;
}
Code:
<div id="Wave_L"></div>
<div id="Wave_R"></div>