回答編集履歴
1
説明追記
answer
CHANGED
@@ -1,4 +1,25 @@
|
|
1
|
+
呈示のHTMLは P要素の閉じタグ`</p>`が`<p>`になっていますので、それを修正してください。
|
2
|
+
```html
|
3
|
+
<table>
|
4
|
+
<tr>
|
5
|
+
<th class="detail-table-th">
|
6
|
+
|
7
|
+
<div class="detail-table-img">
|
8
|
+
<img src="image/footer-potepanda.png" width="60px" height="30px">
|
9
|
+
</div>
|
10
|
+
<div class="detail-table-text">
|
11
|
+
<p class="detail-table-text-1">POTEPANの</p>
|
12
|
+
<p class="detail-table-text-1">選べる</p>
|
13
|
+
<p class="detail-table-text-1"><span class="detail-table-text-1-emphasis">3</span>コース
|
14
|
+
</p>
|
15
|
+
</div>
|
16
|
+
|
17
|
+
</th>
|
18
|
+
</tr>
|
19
|
+
</table>
|
20
|
+
```
|
21
|
+
|
1
|
-
下記のような感じかな。要素サイズやフォントサイズは適当ですのでそちらで調整してください。
|
22
|
+
CSSは下記のような感じかな。要素サイズやフォントサイズは適当ですのでそちらで調整してください。
|
2
23
|
```css
|
3
24
|
.detail-table-th{
|
4
25
|
width:218px;
|