表の境界線の幅の実験

メールアドレスの保有数

  A市未成年 A市女性 A市男性
1個 23% 29% 16%
2個 33% 28% 22%
3個以上 43% 43% 61%
<head>
<style type="text/css">
<!--


	TABLE { table-layout:  fixed; width: 300px;  }


}

-->
</head>
<body>
  <table class="col">
<tr>
<th ></th>
<th>A市未成年</th>
<th>A市女性</th>
<th>A市男性</th>
</tr>
・・・・・・
 <table class="sep">
<tr>
<th ></th>
<th>A市未成年</th>
<th>A市女性</th>
<th>A市男性</th>
</tr>
  


</body>


table-layout: layout テーブルのレイアウト方法を auto(既定値:自動) fixed(固定) inherit(継承) のいずれかで指定する。 fixed を指定すると、テーブルの横幅をテーブルの内容に関わらず固定することができる。 <例> TABLE { table-layout: fixed; width: 300px; }