djangoの練習中です。
画像のサイズ比とレスポンシブを取り入れるため、以下のコードを実現させたいです。
しかし、クォーテーション、ダブルクォーテーションが三重の入れ子になってしまい、うまくできません。
どのようにすれば実現できるでしょうか?
html
1<div class="thumbnail" style="background-image: url('{% static "image/img1.jpg" %}')"></div>
CSS
1.thumbnail { 2 background-size: cover; 3 background-position: center center; 4 padding-top: 71.42%; 5 width: 100%; 6}
なお、以下のような二重の入れ子は表示させられています。
html
1<div class="thumbnail" style="background-image: url('{{ object.photo1.url }}')"></div>
こちらのサイトから\を追加してみましたが、エラーでした。
html
1<!--ケース1--> 2<div class="thumbnail" style="background-image: url('{% static \'image/カリオン.jpg\' %}')"></div> 3 4<!--ケース2--> 5<div class="thumbnail" style='background-image: url(\'{% static "image/カリオン.jpg" %}\')'></div>
あなたの回答
tips
プレビュー