スマホでも見やすい!商品を比較するテーブルデザインのCSS

※当サイトにはプロモーションが含まれています。

クライアントクライアント

2つの商品を比較するテーブルを作ってくれ!

にゃテックにゃテック

おけまるだにゃ

2つの商品を要素ごとに比較したい時があると思います。

その際に使用するテーブルを作成してみました。

ストリーミングサービスの比較
Netflixロゴ Amazon Prime Videoロゴ
コンテンツの種類
オリジナル作品が充実

映画、ドラマ、アニメ、ドキュメンタリーなど多岐にわたる

幅広いジャンルを網羅

映画、ドラマ、アニメ、ライブスポーツ、音楽など幅広い

価格
様々なプランを用意

月額 ¥780〜¥1,980

Amazonの様々なサービス込み

月額 ¥500/年間プラン ¥4,900

※上記のデータは正確でないかもしれません

2つの商品を比較する表のCSS

2つの商品を比較する表のCSSです。

HTML

<div class="nya-compare-table-wrap">
<div class="nya-compare-table-title">ストリーミングサービスの比較</div>
<div class="nya-compare-table">
<table>
<thead>
<tr>
<th><img src="https://via.placeholder.com/200x200/d1d1d1/000000?text=Netflix" alt="Netflixロゴ" /></th>
<th><img src="https://via.placeholder.com/200x200/d1d1d1/000000?text=Amazon+Prime" alt="Amazon Prime Videoロゴ" /></th>
</tr>
</thead>
<tbody>
<tr>
<th colspan="2">コンテンツの種類</th>
</tr>
<tr>
<td>
<div class="nya-element-title">オリジナル作品が充実</div>
映画、ドラマ、アニメ、ドキュメンタリーなど多岐にわたる</td>
<td>
<div class="nya-element-title">幅広いジャンルを網羅</div>
映画、ドラマ、アニメ、ライブスポーツ、音楽など幅広い</td>
</tr>
<tr>
<th colspan="2">価格</th>
</tr>
<tr>
<td>
<div class="nya-element-title">様々なプランを用意</div>
月額 ¥780〜¥1,980</td>
<td>
<div class="nya-element-title">Amazonの様々なサービス込み</div>
月額 ¥500/年間プラン ¥4,900</td>
</tr>
</tbody>
</table>
</div>
</div>

比較する項目を増やしたい場合は、下記の部分のパーツを</tbody>の前に追加します。

<tr>
<th colspan="2">価格</th>
</tr>
<tr>
<td>
<div class="nya-element-title">様々なプランを用意</div>
月額 ¥780〜¥1,980</td>
<td>
<div class="nya-element-title">Amazonの様々なサービス込み</div>
月額 ¥500/年間プラン ¥4,900</td>
</tr>

また、下記の部分には、イメージ画像が入ります。

<img src="https://via.placeholder.com/200x200/d1d1d1/000000?text=Netflix" alt="Netflixロゴ" />

ちょっと分かりにくいですね。スミマセン・・・。

CSS

.nya-compare-table-wrap {
width: 100%;
max-width: 720px;
margin: 0 auto 2em;
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.nya-compare-table-title {
background: #3b4675;
text-align: center;
color: #fff;
font-weight: bold;
padding: 1em;
letter-spacing: 1px;
margin: 0;
font-size: 1.25em;
box-shadow: 0 2px 5px rgba(100, 100, 100, 0.1);
}

.nya-compare-table {
background: #efefef;
margin: 0;
padding: 0.3em 1em;
}

.nya-compare-table table {
border-collapse: separate;
border-spacing: 5px 10px;
border: none;
margin-bottom: 0;
width: 100%;
}

.nya-compare-table table th, .nya-compare-table table td {
padding: 1em;
vertical-align: top;
}

.nya-compare-table table thead th {
border: none;
padding: 0.5em;
border-radius: 3px;
background-color: transparent;/* 賢威で利用時に追加 */
}

.nya-compare-table table thead th img {
width: 100%; /* 画像の幅をセルの幅に合わせる */
max-width: 200px; /* 画像の最大幅を設定 */
height: auto; /* 高さを自動で調整してアスペクト比を維持 */
display: block; /* ブロック要素として表示 */
margin: 0 auto; /* センタリング */
}

.nya-compare-table table tbody th {
background: #3b4675;
text-align: center;
color: #fff;
border: none;
border-radius: 30px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
padding: 0.4em 1em;
line-height: 1.3;
font-size: 1.1em;
}

.nya-compare-table table tbody td {
background: #fff;
box-shadow: 0 2px 5px rgba(100, 100, 100, 0.1);
border-radius: 3px;
border: none;
padding: 1.2em;
color: #555;
line-height: 1.8;
text-align: justify;
}

.nya-element-title {
text-align: center;
font-weight: bold;
color: #3b4675;
font-size: 1.1em;
margin-bottom: 7px;
}

@media screen and (max-width: 768px) {
.nya-compare-table {
padding: 7px;
}
.nya-compare-table table {
border-spacing: 3px 10px;
}
}

.nya-compare-table table thead thの、background-color: transparent;は、本来ならば不要です。

賢威のデフォルト設定と競合するので無効にしています。

画像の大きさの設定は、.nya-compare-table table thead th imgでおこなっています。

この部分の数値、特に、max-width: 200px;の値を変更すると画像の大きさを調整できます。