問題描述
我有以下 css3 過渡效果:
I have the following css3 transition with ease effect:
HTML
<div class="button">
<a href="#" onMouseOver="clicksound.playclip()"></a>
<p id="myId" class="top"></p>
</div>
CSS
* {
padding: 0;
margin: 0;
}
.button {
width: 180px;
margin-top: 45px;
}
.button a {
display: block;
height: 40px;
width: 180px;
/*TYPE*/
color: black;
font: 17px/50px Helvetica, Verdana, sans-serif;
text-decoration: none;
text-align: center;
text-transform: uppercase;
}
.button a {
background:url(http://imageshack.com/a/img819/761/dqj.gif);
margin: -50 0 0 0;
z-index: -1;
}
p#myId {
background: url(http://imageshack.com/a/img854/1921/9ft3.png);
display: block;
height: 40px;
width: 167px;
margin: -40px 0 0 5px;
z-index:-1;
/*TYPE*/
text-align: center;
font: 12px/45px Helvetica, Verdana, sans-serif;
color: #fff;
/*POSITION*/
position: absolute;
/*TRANSITION*/
-webkit-transition: margin 0.1s ease;
-moz-transition: margin 0.1s ease;
-o-transition: margin 0.1s ease;
-ms-transition: margin 0.1s ease;
transition: margin 0.1s ease;
}
.button:hover .top {
margin: -67px 0 0 5px;
line-height: 35px;
}
/*ACTIVE*/
.button:active .top {
margin: -70px 0 0 5px;
}
如果我在 CSS 中將 p#myId
選擇器更改為 p
,它可以工作(按鈕在懸停時上升),否則不會.
If I change the p#myId
selector to p
in CSS, it works (the button goes up on hover), otherwise it won't.
在 jsFiddle 上運行演示
推薦答案
問題是處理你的 :hover
行為的選擇器有一個較低的Specificity 比默認行為的規(guī)則(p#id
選擇器).
The problem is that the selector handling your :hover
behavior has a lower Specificity than the rule for the default behavior (p#id
selector).
改變這個
.button:hover .top {
到這里
.button:hover #myId.top {
將解決問題:運行示例
will solve the problem: Running example
您還可以將 id 應(yīng)用于父對象(比如說 <div id="container">
),然后使用
You can also apply an id to a parent object (lets' say <div id="container">
), and then use
#container .button:hover .top {
<小時>
必讀:CSS 特定性規(guī)范
例子:
這篇關(guān)于CSS:當我為段落設(shè)置 ID 時,懸停效果不起作用的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,也希望大家多多支持html5模板網(wǎng)!