CSS3 を使用して、ボックス シャドウの出入りを容易にする div id を取得しようとしています。
私が持っている現在のCSSは次のとおりです。
#how-to-content-wrap-first:hover {
-moz-box-shadow: 0px 0px 5px #1e1e1e;
-webkit-box-shadow: 0px 0px 5px #1e1e1e;
box-shadow: 0px 0px 5px #1e1e1e;
-webkit-transition: box-shadow 0.3s ease-in-out 0s;
-moz-transition: box-shadow 0.3s ease-in-out 0s;
-o-transition: box-shadow 0.3s ease-in-out 0s;
-ms-transition: box-shadow 0.3s ease-in-out 0s;
transition: box-shadow 0.3s ease-in-out 0s;
}
私が抱えている問題は、要素の最初のホバーではイージングインまたはイージングアウトがなく、その後のホバーはイージングインしますが、イージングアウトしないということです。
人々が持っているアドバイスは大歓迎ですか?