detailsを入れ子にした場合に、入れ子のdetailsのhover等、CSSの設定が効かない状態となっております
親をクリックしたりホバーすると親にはCSSが適応されますが、
子には一切CSSのホバー等が無効となります
この問題を解決する方法をご存じの方、教えていただけませんでしょうか?
HTML
1<details style="width:15%;height:50px;float:left"> 2<summary style="height:100%">親1</summary> 3<div class="details-content" style="height:100%;width:100%"> 4<div style="width:100%;height:1000%;background-color:red"> 5 6<details style="width:100%;height:100px"><!-- hover等無効になる部分 --> 7<summary style="height:100%">子1</summary> 8hello 9</details> 10 11</div></div> 12</details> 13 14 15<details style="width:15%;height:50px;float:left"> 16<summary style="height:100%">親2</summary> 17<div class="details-content" style="height:100%;width:100%"> 18<div style="width:100%;height:1000%;background-color:red"> 19 20<details style="width:100%;height:100px"><!-- hover等無効になる部分 --> 21<summary style="height:100%">子2</summary> 22hello 23</details> 24 25</div></div> 26</details> 27
CSS
1<style> 2body,html { 3 height:100%; 4} 5summary { 6 position: relative; 7 display: block; /* 矢印を消す */ 8 padding: 10px 10px 10px 30px; /* アイコンの余白を開ける */ 9 cursor: pointer; /* カーソルをポインターに */ 10 font-weight: bold; 11 background-color: green; 12 transition: 0.2s; 13} 14summary:hover { 15 background-color: skyblue; 16} 17summary::-webkit-details-marker { 18 display: none; /* 矢印を消す */ 19} 20 21/* 疑似要素でアイコンを表示 */ 22summary:before, 23summary:after { 24 content: ""; 25 margin: auto 0 auto 10px; 26 position: absolute; 27 top: 0; 28 bottom: 0; 29 left: 0; 30} 31summary:before { 32 width: 16px; 33 height: 16px; 34 background-color: deepskyblue; 35} 36summary:after { 37 left: 6px; 38 width: 5px; 39 height: 5px; 40 border: 4px solid transparent; 41 border-left: 5px solid white; 42 box-sizing: border-box; 43 transition: .1s; 44} 45 46/* オープン時のスタイル */ 47details[open] summary { 48 background-color: yellow; 49} 50details[open] summary:after { 51 transform: rotate(90deg); /* アイコンを回転 */ 52 left: 4px; /* 位置を調整 */ 53 top: 5px; /* 位置を調整 */ 54} 55 56/* アニメーション */ 57details[open] .details-content { 58 animation: fadeIn 0.5s ease; 59} 60@keyframes fadeIn { 61 0% { 62 opacity: 0; 63 transform: translateY(-10px); 64 } 65 100% { 66 opacity: 1; 67 transform: none; 68 } 69} 70</style>
ブラウザは何で見ていますか?
Firefoxです
回答2件
あなたの回答
tips
プレビュー