2017-05-09 85 views

回答

0

我完全不理解这个问题,但可以使用cursor属性来更改光标的外观。

.vc_column_container { cursor: default; } 
+1

非常有魅力,非常感谢! –

+0

@DylanGarrod,如果您认为您的问题得到解答,请将其中一个答案标记为“已接受”,以让其他人知道您的问题已得到解决。谢谢。 – Pyromonk

0

起初我误会了你的问题,但

1)不,不,你可以使用其他元素悬停规则太

2)可以使用cursor参数并将其设置为default上悬停状态,以避免指针:

.x { 
 
width: 300px; 
 
height: 200px; 
 
background: url(http://placehold.it/300x200/fa0); 
 
} 
 
.x:hover { 
 
background: url(http://placehold.it/300x200/0af); 
 
cursor: default; 
 
}
<div class="x"></div>

+1

非常感谢您的帮助 –