見本のよう子要素の背景色を白に変えたいのですが、変わりません。
どのように変えればいいか教えていただけたらありがたいです。
<html lang="ja"> <head> <meta charset="UTF-8"> <title>課題</title> <link rel="stylesheet" href="practice_selector.css"> </head> <body> <article> <section> <h1>私のおすすめのレストラン</h1> <p>私が今までに利用したレストランの中からオススメのお店を紹介します</p> <dl>オススメのレストラン一覧</dl> <ul> <li>レストランA</li> <li class="red background">レストランB</li> <li class="background" >レストランC</li> <li>レストランD</li> <li class="red">レストランE</li> </ul> <dd><span2 class="background">ピンク</span2>の背景色のレストランは特に女性におすすめです<br><span>赤</span>の文字色はファミリー向けのお店です</dd> </section> <section> <dl>各レストランのおすすめ料理</dl> <p class="restaurant">レストランA</p> <p>フレンチトースト</p> <p class="restaurant">レストランB⭐️</p> <p>パンケーキ</p> <p class="restaurant">レストランC</p> <p>シーザーサラダ</p> <p class="restaurant">レストランD⭐️</p> <p>ハンバーグ</p> <p class="restaurant">レストランE</p> <p>ミートスパゲッティ</p> <dd>⭐️は雑誌で紹介されたお料理です</dd> </section> </article> </body> </html> コード
body{
margin-left: auto;
margin-right: auto;
background-color:#C0C0C0;
padding:50px;
width:500px;
margin-top:0;
margin-bottom:0;
}
h1{
text-align:center;
font-size:30px;
}
li{
margin-left: auto;
margin-right: auto;
list-style-type: square;
margin:5px;
}
dl{
font-size:25px;
}
span{
color:#FF0033;
}
.red{
color:#FF0033;
}
.background{
background-color:#CC6699;
}
.section1{
background-color:#008000;
}
.restaurant{
font-weight: bold;
border-bottom:solid 1px #0000FF;
border-left:solid 10px #0000FF;
}
回答2件
あなたの回答
tips
プレビュー