html
1 <article> 2 <a href="_single"> 3 <span class="program--cate">地上波</span> 4 <h2 class="program--text">テキストが入ります。</h2> 5 </a> 6 </article>
css
1article { 2 border-bottom: 1px solid #707070; 3 margin-bottom: 45px; 4} 5 article a { 6 display: flex; 7 text-decoration: none; 8 color: inherit; 9 align-items: center; 10 justify-content: flex-start; 11 padding: 1.1em 0 1.1em 0; 12 position: relative; 13 position: relative; 14} 15 16 .program--cate { 17 width: 97px; 18 background: none; 19 color: #40464b; 20 font-size: 16px; 21 font-size: 1.6rem; 22 text-align: center; 23 border: 1px solid #707070; 24 line-height: 1.3; 25 padding: 2px 0; 26 letter-spacing: 0.2em; 27 text-indent: 0.2em; 28} 29 30.program--text { 31 font-size: 100%; 32 line-height: 1.4; 33 margin-left: 45px; 34 max-width: calc(100% - 240px); 35 letter-spacing: 1px; 36}
上記画像のhtmlコードをwp化しようと、以下のように書きました。
php
1 <article> 2 <a href="<?php get_permalink(); ?>"> 3 <span class="program--cate"><?php the_category(' '); ?></span> 4 <h2 class="program--text"><?php the_title(); ?></h2> 5 </a> 6 </article>
すると下記画像のレイアウトになります。
<span>タグ<h2>タグが<a>タグからはずれ、
<a href="<?php get_permalink(); ?>"></a>となり、
<a href="<?php get_permalink(); ?>">の閉じタグを</h2>の後ろに持って行き。
<?php the_category(' '); ?>に,<span>タグのスタイルが当たればいいのではないかと思うのですが、、、どう解決したらいいのかわかりません。
アドバイスお願いします。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/01/06 15:05
2021/01/06 15:27
2021/01/06 16:18