1 Attachment(s)
[solved] a little extension on IE
dunno about this much but i've got a little extension on IE on creating div. can you help me with this? thank you.
http://vbforums.com/attachment.php?s=&postid=1794168
how do i remove this green circled messy stuff. this is my code
Code:
<table>
<tr>
<td width="200">
<div class="bred fwhite">
<img class="vtop" src="images/top.png" alt="" />
<div class="indented"><b>General</b>
<div class="indented">
<a class="fwhite" href="index.html">Home</a><br />
</div>
</div>
<img class="vbottom" src="images/bottom.png" alt="" />
</div>
</td>
<td class="vtop">
<span class="header">Home</span>
</td>
</tr>
</table>
and the css
Code:
body,table{
font-style:italic;
}
td,th{
padding:3px;
}
.bblack{
background:black;
}
.bred{
background:red;
}
.fwhite{
color:white;
}
.header{
font-weight:bold;
font-size:14pt;
}
.indented{
margin-left:10px;
margin-right:10px;
}
.wide{
width:100%;
}
.vbottom{
vertical-align:bottom;
}
.vtop{
vertical-align:top;
}