3
I would like to know the difference between the values no-drop
and not-allowed
of property cursor
of CSS.
span{
font-size: 30px;
}
.not-allowed{
cursor: not-allowed;
}
.no-drop{
cursor: no-drop;
}
<span class="not-allowed">not-allowed</span><br>
<span class="no-drop">no-drop</span><br>
Plus which one is compatible with all browsers?
– Danilo Pádua
@Danilo edited the answer to answer that.
– celsomtrindade
I had that question for a while, thanks.
– Danilo Pádua