■やりたいこと
wordpressサイトの記事一覧ページで奇数で記事が終わっている時、記事を真ん中に配置するのではなく、左に配置したい。
例:
現状:
記事1:左、記事2:右、記事3真ん中
改善:
記事1:左、記事2:右、記事3左
※記事3を記事1と同じ位置にしたい
■問題点
justify-content: ;をいじれば行けそうなのですがspace-aroundを変えると要素自体が真ん中に行かないです。
php
1<section class="tp-magazine"> 2 <!-- カテゴリーアーカイブ --> 3 <?php if (is_category()) : ?> 4 <h1 class="tp-h2"><?php echo single_cat_title(); ?></h1> 5 <!-- タグアーカイブ --> 6 <?php elseif (is_tag()) : ?> 7 <h1 class="tp-h2"><?php echo single_tag_title(); ?></h1> 8 <!-- 作者アーカイブ --> 9 <?php elseif (is_author()) : ?> 10 <h1 class="tp-h2"><?php echo esc_attr(get_the_author_meta('nickname')); ?></h1> 11 <!-- 日付アーカイブ --> 12 <?php elseif (is_month()) : ?> 13 <h1 class="tp-h2"><?php echo the_time('Y年n月'); ?></h1> 14 <?php endif; ?> 15 16 <div class="tp-magazine__contents"> 17 <?php if (have_posts()) : while (have_posts()) : the_post(); ?> 18 <article class="tp-magazine__article"> 19 <a href="<?php the_permalink(); ?>" class="tp-magazine__article__link"> 20 <div class="tp-magazine__article__thumb"> 21 <?php if (has_post_thumbnail()) : ?> 22 <?php the_post_thumbnail('post-full'); ?> 23 <?php else : ?> 24 <p><img src="http://placehold.jp/24/cc9999/993333/350x150.png" alt=""></p> 25 <?php endif; ?> 26 </div> 27 <div class="tp-magazine__article__card"> 28 <div class="tp-magazine__article__card__info"> 29 <div class="tp-magazine__article__card__info__cat cat-health"> 30 <?php the_category(); ?> 31 </div> 32 <time class="tp-magazine__article__card__info__data"> 33 <?php the_time('Y.m.d'); ?> 34 </time> 35 </div> 36 <h3 class="tp-magazine__article__card__ttl"> 37 <?php the_title(); ?> 38 </h3> 39 </div> 40 </a> 41 </article> 42 <?php endwhile; 43 endif; ?> 44 </div> 45 <?php if (function_exists("the_pagination")) : ?> 46 <?php the_pagination(); ?> 47 <?php endif; ?> 48 </section>
css
1.tp-magazine { 2 width: calc(100% - 340px); 3} 4.tp-magazine__contents { 5 display: flex; 6 position: relative; 7 flex-wrap: wrap; 8 justify-content: space-around; 9 margin-top: 80px; 10} 11 12.tp-magazine__article { 13 width: 36%; 14 max-width: 340px; 15}

回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/08/16 06:44