質問編集履歴
1
ブラウザで出力したソースを追記しました。
test
CHANGED
File without changes
|
test
CHANGED
@@ -138,6 +138,8 @@
|
|
138
138
|
|
139
139
|
|
140
140
|
|
141
|
+
|
142
|
+
|
141
143
|
### 試したこと
|
142
144
|
|
143
145
|
margin-leftやpadding-leftを−16pxにした。
|
@@ -152,6 +154,184 @@
|
|
152
154
|
|
153
155
|
### 補足情報(FW/ツールのバージョンなど)
|
154
156
|
|
157
|
+
ブラウザで出力したソースを追記します。
|
158
|
+
|
159
|
+
|
160
|
+
|
161
|
+
HTML
|
162
|
+
|
163
|
+
<div class="row py-3">
|
164
|
+
|
165
|
+
<div class="col-md-4 col-12">
|
166
|
+
|
167
|
+
<div class="bg-white py-3">
|
168
|
+
|
169
|
+
<!--サムネイル -->
|
170
|
+
|
171
|
+
<div class="pb-3">
|
172
|
+
|
173
|
+
<img class="img-fluid" src="http://sato.local/wp-content/themes/mytheme-practice/img/img1.png">
|
174
|
+
|
175
|
+
</div>
|
176
|
+
|
177
|
+
<!--記事タイトル -->
|
178
|
+
|
179
|
+
<h2 class="h4 px-3 pb-3">ピックアップコンテンツ1ピックアップコンテンツ1ピックアップコンテンツ1</h2>
|
180
|
+
|
181
|
+
<!--ボタン -->
|
182
|
+
|
183
|
+
<div class="text-center">
|
184
|
+
|
185
|
+
<a href="">
|
186
|
+
|
187
|
+
<div class="d-inline-block border p-3 text-secondary">
|
188
|
+
|
189
|
+
READ MORE
|
190
|
+
|
191
|
+
</div>
|
192
|
+
|
193
|
+
</a>
|
194
|
+
|
195
|
+
</div>
|
196
|
+
|
197
|
+
</div>
|
198
|
+
|
199
|
+
</div>
|
200
|
+
|
201
|
+
<div class="col-md-4 col-12">
|
202
|
+
|
203
|
+
<div class="bg-white py-3">
|
204
|
+
|
205
|
+
<!--サムネイル -->
|
206
|
+
|
207
|
+
<div class="pb-3">
|
208
|
+
|
209
|
+
<img class="img-fluid" src="http://sato.local/wp-content/themes/mytheme-practice/img/img1.png">
|
210
|
+
|
211
|
+
</div>
|
212
|
+
|
213
|
+
<!--記事タイトル -->
|
214
|
+
|
215
|
+
<h2 class="h4 px-3 pb-3">ピックアップコンテンツ1ピックアップコンテンツ1ピックアップコンテンツ1</h2>
|
216
|
+
|
217
|
+
<!--ボタン -->
|
218
|
+
|
219
|
+
<div class="text-center">
|
220
|
+
|
221
|
+
<a href="">
|
222
|
+
|
223
|
+
<div class="d-inline-block border p-3 text-secondary">
|
224
|
+
|
225
|
+
READ MORE
|
226
|
+
|
227
|
+
</div>
|
228
|
+
|
229
|
+
</a>
|
230
|
+
|
231
|
+
</div>
|
232
|
+
|
233
|
+
</div>
|
234
|
+
|
235
|
+
</div>
|
236
|
+
|
237
|
+
</div>
|
238
|
+
|
239
|
+
|
240
|
+
|
241
|
+
Wordpress
|
242
|
+
|
243
|
+
|
244
|
+
|
245
|
+
<!--ピックアップ記事取得 -->
|
246
|
+
|
247
|
+
<div class="row py-3">
|
248
|
+
|
249
|
+
<!--queryを定義する top_queryはtoppickupのタグを持っている記事-->
|
250
|
+
|
251
|
+
<!--top_queryが投稿記事の中にある時出力 -->
|
252
|
+
|
253
|
+
<div class="col-md-4 col-12">
|
254
|
+
|
255
|
+
<div class="bg-white py-3">
|
256
|
+
|
257
|
+
<!--サムネイル -->
|
258
|
+
|
259
|
+
<div class="pb-3">
|
260
|
+
|
261
|
+
<!--サムネイル画像の取得-->
|
262
|
+
|
263
|
+
<img width="1500" height="1000" src="http://sato.local/wp-content/uploads/2020/04/laptop3.jpeg" class="img-fluid wp-post-image" alt="" srcset="http://sato.local/wp-content/uploads/2020/04/laptop3.jpeg 1500w, http://sato.local/wp-content/uploads/2020/04/laptop3-300x200.jpeg 300w, http://sato.local/wp-content/uploads/2020/04/laptop3-1024x683.jpeg 1024w, http://sato.local/wp-content/uploads/2020/04/laptop3-768x512.jpeg 768w" sizes="(max-width: 1500px) 100vw, 1500px" /> <!--画像に独自のクラスをつける事ができる 今回はimg-fluid-->
|
264
|
+
|
265
|
+
</div>
|
266
|
+
|
267
|
+
<!--記事タイトル -->
|
268
|
+
|
269
|
+
<h2 class="h4 px-3 pb-3">CSS入門</h2>
|
270
|
+
|
271
|
+
<!--ボタン -->
|
272
|
+
|
273
|
+
<div class="text-center">
|
274
|
+
|
275
|
+
<a href="http://sato.local/web%e3%82%b5%e3%82%a4%e3%83%88%e3%83%aa%e3%83%8b%e3%83%a5%e3%83%bc%e3%82%a2%e3%83%ab%e3%81%ae%e3%81%8a%e7%9f%a5%e3%82%89%e3%81%9b/">
|
276
|
+
|
277
|
+
<div class="d-inline-block border p-3 text-secondary">
|
278
|
+
|
279
|
+
READ MORE
|
280
|
+
|
281
|
+
</div>
|
282
|
+
|
283
|
+
</a>
|
284
|
+
|
285
|
+
</div>
|
286
|
+
|
287
|
+
</div>
|
288
|
+
|
289
|
+
</div>
|
290
|
+
|
291
|
+
<!--top_queryが投稿記事の中にある時出力 -->
|
292
|
+
|
293
|
+
<div class="col-md-4 col-12">
|
294
|
+
|
295
|
+
<div class="bg-white py-3">
|
296
|
+
|
297
|
+
<!--サムネイル -->
|
298
|
+
|
299
|
+
<div class="pb-3">
|
300
|
+
|
301
|
+
<!--サムネイル画像の取得-->
|
302
|
+
|
303
|
+
<img width="1350" height="900" src="http://sato.local/wp-content/uploads/2020/04/laptop4.jpeg" class="img-fluid wp-post-image" alt="" srcset="http://sato.local/wp-content/uploads/2020/04/laptop4.jpeg 1350w, http://sato.local/wp-content/uploads/2020/04/laptop4-300x200.jpeg 300w, http://sato.local/wp-content/uploads/2020/04/laptop4-1024x683.jpeg 1024w, http://sato.local/wp-content/uploads/2020/04/laptop4-768x512.jpeg 768w" sizes="(max-width: 1350px) 100vw, 1350px" /> <!--画像に独自のクラスをつける事ができる 今回はimg-fluid-->
|
304
|
+
|
305
|
+
</div>
|
306
|
+
|
307
|
+
<!--記事タイトル -->
|
308
|
+
|
309
|
+
<h2 class="h4 px-3 pb-3">WordPressの教科書</h2>
|
310
|
+
|
311
|
+
<!--ボタン -->
|
312
|
+
|
313
|
+
<div class="text-center">
|
314
|
+
|
315
|
+
<a href="http://sato.local/wordpress%e3%81%ae%e6%95%99%e7%a7%91%e6%9b%b8/">
|
316
|
+
|
317
|
+
<div class="d-inline-block border p-3 text-secondary">
|
318
|
+
|
319
|
+
READ MORE
|
320
|
+
|
321
|
+
</div>
|
322
|
+
|
323
|
+
</a>
|
324
|
+
|
325
|
+
</div>
|
326
|
+
|
327
|
+
</div>
|
328
|
+
|
329
|
+
</div>
|
330
|
+
|
331
|
+
</div>
|
332
|
+
|
333
|
+
|
334
|
+
|
155
335
|
|
156
336
|
|
157
337
|
ここにより詳細な情報を記載してください。
|