テーブルタグについて
-
0 名前: 竹 : 2006/08/17(木) 03:39 ID:29KUAZ/7
- 今日HTML質問掲示板でテーブルを横に表示させる方法を質問して
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html lang="ja" dir="ltr">
<head>
<title>成績表比較</title>
<style type="text/css">
table.examination{
border-collapse: collapse;
margin-right: 1em;
}
table.examination,
table.examination td,
table.examination th{
border-width: 1px;
border-style: solid;
border-width: #000;
width: auto;
}
table#examination01{
float: left;
}
table#examination02{
float: right;
}
</style>
</head>
<body>
<table summary="第1回試験" class="examination" id="examination01">
<thead>
<tr>
<th scope="col">名前</th><th scope="col">得点</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">出木杉英才</th><td>100</td>
</tr>
<tr>
<th scope="row">野比のび太</th><td>0</td>
</tr>
</tbody>
</table>
<table summary="第2回試験" class="examination" id="examination02">
<thead>
<tr>
<th scope="col">名前</th><th scope="col">得点</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">出木杉英才</th><td>100</td>
</tr>
<tr>
<th scope="row">野比のび太</th><td>10</td>
</tr>
</tbody>
</table>
<p>当クラスの二人の生徒のテスト成績表を抜き出しました。</p>
</body>
</html>
のようにCSSでやれば良い見たいな事を言われたんですけど、どのタグはどのような意味があるのかをよろしければ教えていただけないでしょうか?
よろしくお願いします。
-
1 名前: 匿名 : 2006/08/17(木) 03:39 ID:UPA6qwnV
- どうしてスタイルシートの質問掲示板でタグの質問をしますか?
>どのタグはどのような意味があるのかをよろしければ教えていただけないでしょうか?
こちらをご覧あれ
http://www.asahi-net.or.jp/%7Esd5a-ucd/rec-html401j/
-
2 名前: 竹 : 2006/08/17(木) 03:39 ID:VdF75UoL
- すみませんでした。
今考えてみたら、おかしかったですね。
ありがとうございました。
-
3 名前: 通りすがり : 2006/08/17(木) 03:39 ID:9IuG66CT
- このサイトはリファレンスサイトなのですから、
タグの意味くらいはご自分で調べられるのではないでしょうか?
-
4 名前: Newのり太 : 2006/08/17(木) 03:39 ID:e.v43VQv
- 同時進行気味スレッドへリンクのみ。
http://www.tagindex.com/cgi-lib/q2bbs/patio.cgi?mode=view&no=849
-
5 名前: 竹 : 2006/08/17(木) 03:39 ID:zTjEk.Px
- 皆さんのおかげでホームページができました。
ありがとうございます。
今までご迷惑をおかけして申し訳ありませんでした。