前提・実現したいこと
発生している問題・エラーメッセージ
エラーメッセージ
該当のソースコード
HTML
1 <section class="price"> 2 <p class="jp-ttl">価格</p><!-- /.jp-ttl --> 3 <p class="en-ttl">price</p><!-- /.en-ttl --> 4 5 <table> 6 7 <tr class="tb-pc_row"> 8 <th class="tb-pc_header">HTMLコーディングトップページ</th><!-- /.tb-pc_header --> 9 <td class="tb-pc_text">30.000~</td><!-- /.tb-pc_text --> 10 </tr><!-- /.tb-pc_row --> 11 <tr class="tb-pc_row"> 12 <th class="tb-pc_header">HTMLコーディングトップページ</th><!-- /.tb-pc_header --> 13 <td class="tb-pc_text">30.000~</td><!-- /.tb-pc_text --> 14 </tr><!-- /.tb-pc_row --> 15 <tr class="tb-pc_row"> 16 <th class="tb-pc_header">HTMLコーディングトップページ</th><!-- /.tb-pc_header --> 17 <td class="tb-pc_text">30.000~</td><!-- /.tb-pc_text --> 18 </tr><!-- /.tb-pc_row --> 19 <tr class="tb-pc_row"> 20 <th class="tb-pc_header">HTMLコーディングトップページ</th><!-- /.tb-pc_header --> 21 <td class="tb-pc_text">30.000~</td><!-- /.tb-pc_text --> 22 </tr><!-- /.tb-pc_row --> 23 24 </table> 25 <!--<form action="" class="form"></form><!-- /.form --> 26 27 </section><!-- /.price -->
SASS
1.price{ 2 background-color: #EEFBFB; 3 width: 1365px; 4 height: 745px; 5 6} 7 8.tb-pc{ 9 width: 100%; 10 box-shadow: 0px 3px 6px #00000029; 11 background-color: #fff; 12 border-collapse: collapse; 13 14 .tbody{ 15 16 .tb-pc_row{ 17 .tb-pc_header{ 18 width: 30%; 19 padding: 30px; 20 min-width: 300px; 21 border: 1px solid #f0eded; 22 } 23 24 .tb-pc_text{ 25 width: 70%; 26 text-align: left; 27 padding: 30px; 28 border: 1px solid #f0eded; 29 font-weight: bold; 30 } 31 } 32 33 } 34}
※CSSはまだ途中です。確認しながら、進めているためです。
試したこと
tableタグについて調べました。今回は、テーブルが行の構成なので
theadタグはいらないのか、と解釈しました。
回答2件
あなたの回答
tips
プレビュー