I'm creating a box that had a container divsion and then an innner division for the content. However there is a gap of about ten pixel between the bottom of the container and a bottom of the inner divsion. I need them to be the same height since the inner divison has a image border that had to go all the way to the bottom.
CSS:
HTML:
Can anyone suggest how to get both division the same height.
CSS:
Code:
.my_div{ border: 0px solid #ffffff; width: 272px; vertical-align: top; padding-top: 0; margin-top: 0; padding-bottom:0; margin-bottom: 0; } .my_div div{ background: url(../images/column_bg.jpg) repeat-y; padding: 0 0 0 0; margin: 0 0 0 0; }
Code:
<div class="my_div"> <div> <h3>Title</h3> <div><p>Contwnt</p></div> </div> </div>
Comment