質問編集履歴

1

HTMLのコードを追記します。(URLや文字など、省略しています。)

2019/02/09 17:11

投稿

yoshida14
yoshida14

スコア17

test CHANGED
File without changes
test CHANGED
@@ -35,3 +35,75 @@
35
35
  ### 最後に
36
36
 
37
37
  この画像だけしか用意できなかったのですが、このような崩れ方をご存知の方、予想がつく方がいらっしゃったら、ヒントを教えていただきたいと考えております。よろしくお願い申し上げます。
38
+
39
+
40
+
41
+ ```HTML
42
+
43
+ <article class="post" id="post-1">
44
+
45
+
46
+
47
+ <a href="https://example.com">
48
+
49
+ <img width="500" height="50" src="https://example.com/1.jpg" alt="">
50
+
51
+ </a>
52
+
53
+
54
+
55
+ <div>
56
+
57
+ <header class="entry-header">
58
+
59
+ <a href="https://example.com">
60
+
61
+ <h3 class="title">タイトル</h3>
62
+
63
+ </a>
64
+
65
+ <div class="entry-meta">
66
+
67
+ <span class="author"><a href="https://example.com/admin/">admin</a></span>
68
+
69
+ </div>
70
+
71
+ </header>
72
+
73
+
74
+
75
+ <a href="https://example.com/">
76
+
77
+ <div class="content">
78
+
79
+ <p>抜粋文</p>
80
+
81
+ </div>
82
+
83
+ </a>
84
+
85
+
86
+
87
+ <footer>
88
+
89
+ <span class="comment">
90
+
91
+ <a href="https://example.com">コメントを送る</a>
92
+
93
+ </span>
94
+
95
+ <span class="edit">
96
+
97
+ <a href="https://example.com">編集</a>
98
+
99
+ </span>
100
+
101
+ </footer>
102
+
103
+ </div>
104
+
105
+
106
+
107
+ </article>
108
+
109
+ ```