我正在使用cursor:指针,当鼠标悬停在深灰色框内的浅灰色框中时,通过使用check :: before css显示指针,它在chrome中工作正常,但在mac safari中没有。我不想为此使用锚标记。以下是我的代码: -
div.check{
width:300px;
height:300px;
background: grey;
position: relative;
}
div.check::before{
content: '';
cursor: pointer;
position: absolute;
left: 0;
right: 0;
width: 100px;
height: 100px;
margin: 0 auto;
text-align: center;
top: 30%;
z-index: 999999999;
display: block;
background: lightgrey;
}
<div class="check"></div>
请告诉我解决方案。