2017-05-09 39 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

非常感謝您的幫助 –

相關問題