所以我在玩別人的codepen,想從fontawesome中添加一些箭頭到代碼。有關的問題:第一個類型:之前:hover
我可以用下面的代碼添加箭頭:
.button:first-of-type:before {
content: "\f100";
font-family: fontAwesome;
color: #000;
font-size: 1em;
z-index: 10;
margin: 20px 0 0 -75px;
position: absolute;
}
這個工作,但是當你把光標移動按鈕,我想的CSS之前顯示無。
我曾嘗試以下,但它不工作:
.button:before:hover:first-of-type {
display: none;
}
和
.button:first-of-type:before:hover {
display: none;
}
和
.button:first-of-type:hover:before {
display: none;
}
我也嘗試添加重要的,但沒有任何作品! 。
這裏是對codepen鏈接:http://codepen.io/bskousen/pen/tgJdH
'.button:第一的型:懸停:before' [似乎工作](http://jsbin.com/vapeqa/1/watch?html ,CSS,輸出)。 – 2014-10-10 16:01:29
'.button:first-of-type:hover:before'對我有用http://jsfiddle.net/19uuwp27/ – DaniP 2014-10-10 16:02:17
你也確定'first-type'是你想要的選擇器嗎? http://jsfiddle.net/19uuwp27/2/ – DaniP 2014-10-10 16:04:19