divの背景色が反映されません。現在は下の画像のようになっています
<html lang="ja"> <head> <meta chraset="utf-8"> <title>ahhjk</title> <link rel="styleheet" href="css/styles.css"> </head> </html> <body> <div class="box1">1</div> <div class="box2">2</div> <div class="box3">3</div> <div class="box4">4</div> <div class="box5">5</div> </body> </html> コード
body{
1 margin: 0px; 2} 3 4.box1{ 5 background:hsl(0, 60%, 60%); 6} 7 8.box2{ 9 background-color: black; 10} 11 12.box3{ 13 background-color: black; 14} 15 16.box4{ 17 background-color: black; 18} 19 20.box5{ 21 background-color: black; 22} 23コード
回答2件
あなたの回答
tips
プレビュー