我有一個圖像,它被分割成中間,左側窗格和右側窗格。每一方都有獨特的鏈接,並且它自己懸停。在分割圖像上難以懸停
HTML
<div class="jumbotron" style="position: relative;">
<div>
<div class="jumbo-title">
<p runat="server">Title</p>
</div>
<a id="leftPane" class="jumbo-hover" runat="server" target="_blank">
<div>
<p>Summary</p>
</div>
</a>
<a id="rightPane" class="jumbo-hover" runat="server" target="_blank">
<div>
<p>Full Report</p>
</div>
</a>
<img src="/assets/home.jpg" />
</div>
</div>
CSS
.jumbo-hover {
height: 100%;
width: 50%;
position: absolute;
top: 0;
}
#MainContent_rightPane {
right:0;
}
#MainContent_leftPane {
left: 0;
}
.jumbo-hover:hover {
background-color: rgba(16, 89, 121, 0.48);
}
.jumbo-hover:hover div p {
color: #cbf305;
}
.jumbotron p
{
line-height:1.15em
}
.jumbotron a
{
text-decoration:none;
}
.jumbo-title
{
position:absolute;
color:white;
width:500px;
text-align:center;
font-size:40px;
font-family:Montserrat, sans-serif;
text-transform:uppercase;
z-index:1000;
margin-top:20%;
margin-left:30%;
text-shadow: 1px 4px 5px rgba(150, 150, 150, 1);
font-weight:bold;
}
#MainContent_leftPane div
{
width:30%;
height:20%;
margin-top:69%;
margin-left:64%;
color:white;
font-family:'Playfair Display';
font-size:32px;
text-align:right;
font-style:italic;
line-height:0.9em;
}
#MainContent_rightPane div
{
width: 30%;
height: 20%;
margin-top: 69%;
margin-left: 6%;
color:white;
font-family:'Playfair Display';
font-size:32px;
text-align:left;
font-style:italic;
line-height:0.9em;
}
我的問題是隻有當我將鼠標懸停在.jumbo標題,我分別失去了正確的高亮或左窗格中。如何在懸停的同時向上移動CSS鏈並突出顯示圖像的正確一面?
非常感謝!
看起來像一些相關的代碼缺失http://jsfiddle.net/hdky0s86/一個工作示例將是有用的! – Pevara 2014-11-24 22:44:40
[截圖](http://i.imgur.com/VH1DfSZ。jpg) – BP85 2014-11-24 22:45:47
它看起來像標題應該在你的錨下面,但正如我所說的,請提供一個小提琴或一些能夠再現你目前爲止所做的事情(你的css中的id似乎不適合初學者的HTML)。 – Pevara 2014-11-24 22:48:31