テーブル内に隙間が。
テーブル内に隙間が。
質問です。CSSとテーブルタグを使用してwebページを作りました。が、
IE,FireFox,Chrome等のブラウザでは添付画像のように隙間が出来ます。
これを無くすにはどうすればいいのでしょうか。
(html/cssの書き直さなくてはならない箇所はどこでしょうか)
高さは左右のセルとも300に合わせているのですが…。
どなたかご教授願います。
<!--ソース -->
<style TYPE="text/css">
<!--
td {
margin: 0;
padding: 0px;
}
.content_title {
display: block;
position: relative;
padding-left: 0px;
width: 100%;
height: 40px;
color: #ffffff;
background-color: #000000;}
.content_cell {
position: relative;
padding-bottom: 0px;
width: 100%;
height: 260px;
padding: 0;
}
.menu_link {
display: block;
position: relative;
width: 100%;
height: 30px;
padding-top: 12px;
text-align: center;
font-size: 11pt;
color: #f5f5f5;
background-color: #000000;
}
-->
</style>
<table bordercolor="#aaaaaa" border="2" align="center" width="92%" bgcolor="#353535" cellspacing="2" height="300">
<td rowspan="6" width="72%" bgcolor="#ffffff" height="300" valign="top">
<div class="content_title">あいうえお</div>
<div class="content_cell"><img src="img/hikaku.png" width="100%" height="100%" border="0"></div>
</td>
<td width="28%" height="30" align="center" bgcolor="#000000">
<a class="menu_link" href="../about/index.html">cell_1</a>
</td>
<tr><td width="28%" height="30" align="center" bgcolor="#000000">
<a class="menu_link" href="../flash/index.html">cell_2</a>
</td></tr>
<tr><td width="28%" height="30" align="center" bgcolor="#000000">
<a class="menu_link" href="../web/index.html">cell3</a>
</td></tr>
<tr><td width="28%" height="30" align="center" bgcolor="#000000">
<a class="menu_link" href="../diy/index.html">cell_4</a>
</td></tr>
<tr><td width="28%" height="30" align="center" bgcolor="#000000">
<a class="menu_link" href="../link/index.html">cell_5</a>
</td></tr>
<tr><td width="28%" align="center" height="150" bgcolor="#000000">
<!-- no contents -->no content
</td></tr>
</table>
お礼
ありがとうございました。 tableを使用しない方法を考えてみます。