ドロップダウン で選択されたカテゴリごとに色を変えたいです。カテゴリの種類は8つです。
現在こちらのサイトでラベルを作成しています。
html
1 <div class="card"> 2 <div class="card-body"> 3 <span class="onsale-section"> 4 <span class="onsale"> 5 <b>{{ post.get_category_display }}</b> 6 </span> 7 </span> 8 </div> 9 </div> 10
css
1.card { 2 width: 300px; 3 font-family: sans-serif; 4 margin: 2%; 5} 6 7.card-body { 8 margin-bottom: 10px; 9 position: relative; 10 min-height: 250px; 11} 12 13.onsale-section { 14 position: absolute; 15 top: -6px; 16 right: 15px; 17} 18 19.onsale-section:after { 20 position: absolute; 21 content: ''; 22 display: block; 23 width: 0; 24 height: 0; 25 border-left: 50px solid transparent; 26 border-right: 50px solid transparent; 27 border-top: 6px solid #6ec5d5; 28} 29 30.onsale { 31 position: relative; 32 display: inline-block; 33 text-align: center; 34 background: #6ec5d5; 35 font-size: 14px; 36 line-height: 1; 37 padding: 12px 8px 6px; 38 border-top-right-radius: 8px; 39 width: 84px; 40 text-transform: uppercase 41} 42 43.onsale:before, 44.onsale:after { 45 position: absolute; 46 content: ''; 47 display: block; 48} 49 50.onsale:before { 51 background: #6ec5d5; 52 height: 7px; 53 width: 6px; 54 left: -6px; 55 top: 0; 56} 57 58.onsale:after { 59 background: #96a0a2; 60 height: 7px; 61 width: 8px; 62 border-radius: 8px 8px 0 0; 63 left: -8px; 64 top: 0; 65} 66 67.card img { 68 display: block; 69} 70
{{ post.get_category_display }}
の中には選択したカテゴリ名が入っています。
例えば、{{ post.category }}
で番号が取得されるのでその番号をid
などに入れて、その番号分をCSSで作成して設定しないといけないのでしょうか?
もっと簡単なやり方があればアドバイスいただけると嬉しいです。
何か必要な物があれば追記致します。よろしくお願いいたします。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/08/03 04:31