当我在一个小页面上单独使用它时,这个悬停的想法很好用,但是当我在我的项目上使用它时,它不起作用。 这是代码:
<%@ Page Title="" Language="C#" MasterPageFile="~/Site.Master" AutoEventWireup="true" CodeBehind="WebForm4.aspx.cs" Inherits="WebRole1.WebForm4" %>
<asp:Content ID="Content1" ContentPlaceHolderID="MainContent" runat="server">
<style>
#sel>a: hover #span1 {
display: block;
}
#sel>a{
position: relative;
color: rgba(255,255,255,1);
text-decoration: none;
background-color: rgb(0, 148, 255);
font-family: 'Yanone Kaffeesatz';
font-weight: 700;
font-size: 3em;
display: block;
padding: 4px;
-webkit-border-radius: 8px;
-moz-border-radius: 8px;
border-radius: 8px;
-webkit-box-shadow: 3px 10px 55px 14px rgba(51,39,51,1);
-moz-box-shadow: 3px 10px 55px 14px rgba(51,39,51,1);
box-shadow: 3px 10px 55px 14px rgba(51,39,51,1);
margin: 100px auto;
width: 160px;
text-align: center;
-webkit-transition: all .1s ease;
-moz-transition: all .1s ease;
-ms-transition: all .1s ease;
-o-transition: all .1s ease;
transition: all .1s ease;
top: 0px;
left: -1px;
}
#sel>a:active {
-webkit-box-shadow: 0px 3px 0px rgba(219,31,5,1), 0px 3px 6px rgba(0,0,0,.9);
-moz-box-shadow: 0px 3px 0px rgba(219,31,5,1), 0px 3px 6px rgba(0,0,0,.9);
box-shadow: 0px 3px 0px rgba(219,31,5,1), 0px 3px 6px rgba(0,0,0,.9);
position: relative;
top: 6px;
}
</style>
<div id="sel">
<a href="webform1.aspx" >Private Album!</a>
<a href="webform3.aspx">Public Album!</a>
</div>
<span id="span1">
Apple.
</span>
</asp:Content>
我想要的是每当我徘徊到私人专辑或公开专辑时,都应该展示Apple。否则,没什么。但它一直在屏幕的左下角显示Apple。有什么问题?
答案 0 :(得分:0)
您的CSS选择器错误。
而不是:
#sel > a:hover #span1
使用此
#sel > a:hover + #span1
选择者参考:http://www.w3schools.com/cssref/css_selectors.asp
“Apple”仍然可见,因为你应该从头开始隐藏它:
#span1 {display: none;}