クラスAのボックスを、クラスBよりも上に配置したいですが、z-indexの値を変えても上手くいきません。
どうすればよいでしょうか?
よろしくお願いします。
html
1<!DOCTYPE html> 2<html lang="en"> 3 <head> 4 <meta charset="UTF-8" /> 5 <meta http-equiv="X-UA-Compatible" content="IE=edge" /> 6 <meta name="viewport" content="width=device-width, initial-scale=1.0" /> 7 <title>Document</title> 8 <link rel="stylesheet" href="style.css" /> 9 </head> 10 <body> 11 <div class="A"> 12 1番上にしたい 13 <div class="B">2番</div> 14 </div> 15 </body> 16</html> 17
css
1.A { 2 position: fixed; 3 top: 0; 4 left: 0; 5 z-index: 100; 6 width: 100px; 7 height: 100px; 8 background-color: lightblue; 9} 10 11.B { 12 position: fixed; 13 top: 0; 14 left: 0; 15 z-index: 10; 16 width: 200px; 17 height: 200px; 18 background-color: lightcoral; 19}
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/11/11 13:20