-2
"白いタブ"のディビットは相対的な位置を持ち、それは親divです。なぜ青いバーの上に私の矢印が見えないのですか?
子divは、赤色の矢印で、位置絶対値とZ-インデックスは1000です。しかし、それは青いバーに隠されています。
.task-notification .arrow:after {
width: 0;
height: 0;
border-left: 15px solid transparent;
border-right: 15px solid transparent;
border-bottom: 15px solid #bf4b4b;
content: '';
position: absolute;
left: 73%;
top: -14px;
display: inline-block;
z-index: 1000;
opacity: 1;
}
<ul class="dropdown-menu notifications task-notes" role="menu" aria-labelledby="dLabel">
<div class="arrow"></div>
<div class="notification-heading"> </div>
</ul>
良く – Raghavendra
を支援するためのコードを提供してください
– user7382949CSSコード .task通知.arrow:{ の後ろ:0; 身長:0; border-left:15pxソリッド透明。 border-right:15pxソリッド透明。 border-bottom:15px solid#bf4b4b; 内容: ''; ポジション:絶対; 左:73%; top:-14px; display:インラインブロック; z-インデックス:3000; 不透明度:1; } – user7382949