-5
私は実際にCSSでこのテーブルを作るための助けをすることができます。 私は学校のためにこれを行う必要がありますが、私たちの先生は役に立たず、何も教えてくれません。彼が私たちに語ったことは、w3schoolsを学ぶために使うことですが、私はあまり良くありませんので、私はいくつかの助けに感謝します。CSSのテーブルレイアウト
これは私がすでに作られたものです。
<style>
table{
}
body{ background-image: url("picture.jpeg");}
img{float:left;}
td{border-collapse:collapse;
border-spacing: 10px;
font-family:Verdana;
font-size:11px;
border: 1px solid black;
background-color:white;
width:190px;
height:80px;}
th{border-collapse:collapse;
border:1px solid black;
background-color:lightgrey;
font-family:Arial;
font-size:11px;
width:190px;
height:12px;}
</style>
<html>
<head>
</head>
<body>
<h1>Novice</h1>
<table>
<tr>
<th>heading 1</th>
<th>heading 2</th>
</tr>
<tr>
<td><img src="picture2.jpg">some text</td>
<td><img src="picture 3.jpg">some more text </td>
</tr>
<tr>
<th>heading 3</th>
<th>heading 4</th>
</tr>
<tr>
<td><img src="picture4.jpg">text again</td>
<td class="neki"><img src="picture5.jpg"> and some text</td>
</tr>
</table>
</body>
</html>
実際には何を期待していますか?スケッチと同じように既にテーブルを作成しているようです。 – nabanita
見出しのあるセルとテキストのあるセルの間のスペースを削除しようとしています – rerboi