我有两个div。段落标记位于每个div中,包含一些文本。代码看起来像这样:
<ImageView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:adjustViewBounds="true"
android:id="@+id/bannerImageView"/>
这样的一些CSS工作正常:
<div id="box1">
<p id="text1">Hi!</p>
</div>
<div id="box2">
<p id="text2">Bye!</p>
</div>
但是,当我尝试使用box1中的元素在box2中生成元素时,它不起作用。像这样的东西,例如:
#box1:hover #text1 {
color:blue;
}
我哪里可能出错?
谢谢。
编辑:
我正在使用的真实代码:
HTML
#text1:hover #text2 {
color:blue;
}
CSS
<div id="pageContents">
<div id="header">
<div id="hBox">
<span id="pageTitle_1">FIRSTNAME<br>LASTNAME</span>
<div id="slider1"></div>
</div>
<div id="pBox">
<span id="projects">PAST<br>PROJECTS</span>
<div id="slider2"></div>
</div>
</div>
</div>
答案 0 :(得分:3)
在 css 中,您无法遍历特定选择。
css选择器旨在为浏览器轻松(快速)实现。文档可以遍历一次,随时匹配元素,无需向后调整匹配。
您只能前往您的兄弟姐妹或您的孩子。孙子等。
因此#text1:hover #text2
之类的东西不起作用。
您可以做的是使用adjacent sibling selector(+
选择器),如下所示:
#box1:hover + #box2 > #text2 {
color:blue;
}
修改强>
很遗憾,在#hBox
之后,您无法追溯到#pBox:hover
。没有先前的兄弟选择器。
这种选择:#pBox:hover + #hBox > #pageTitle_1
根据当前规范是错误的。
你必须让Javascript / jQuery实现你想要做的事情。
参考jQuery hover()
解决方案的代码:
$("#pBox").hover(function() {
$("#hBox #pageTitle_1").css("color", "red");
}, function() {
$("#hBox #pageTitle_1").css("color", "black");
});
&#13;
#pBox:hover+#hBox>#pageTitle_1 {
color: #636363;
}
&#13;
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div id="pageContents">
<div id="header">
<div id="hBox">
<span id="pageTitle_1">FIRSTNAME<br>LASTNAME</span>
<div id="slider1"></div>
</div>
<div id="pBox">
<span id="projects">PAST<br>PROJECTS</span>
<div id="slider2"></div>
</div>
</div>
</div>
&#13;
编辑2
+
:当两个div彼此相邻时,应该使用相邻的兄弟选择器。
~
:当兄弟姐妹不在彼此旁边并且可以在dom兄弟链中的任何地方时,应该使用一般兄弟选择器。
OP的问题由一般兄弟选择器解决,因为在应用css的两个容器之间还有其他容器。
参考最终解决方案的代码:
/* http://meyerweb.com/eric/tools/css/reset/
v2.0 | 20110126
License: none (public domain)
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
font: inherit;
vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
display: block;
}
body {
line-height: 1;
background-color: white;
}
ol,
ul {
list-style: none;
}
blockquote,
q {
quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
content: '';
content: none;
}
table {
border-collapse: collapse;
border-spacing: 0;
}
#pageContents {
position: fixed;
width: 100%;
height: 100%;
}
#header {
position: relative;
width: 100%;
height: 80px;
background-color: #404040;
}
#lowerheader {
position: fixed;
width: 100%;
height: 5px;
top: 75px;
background-color: #66cccc;
}
#pageTitle_1 {
font-family: 'VCR OSD MONO';
position: fixed;
color: white;
font-size: 20px;
top: 33px;
left: 10px;
transform: translateY(-50%);
-webkit-transition: all .2s ease-in;
}
#projects:hover {
color: white;
}
#projects {
font-family: 'VCR OSD MONO';
position: fixed;
color: #636363;
font-size: 20px;
top: 33px;
left: 200px;
transform: translateY(-50%);
-webkit-transition: all .2s ease-in;
}
#slider1 {
-webkit-transition: width 1s;
position: fixed;
top: 60px;
left: 10px;
width: 20px;
height: 2px;
background-color: white;
}
#pageTitle_1:hover+#slider1 {
width: 130px;
background-color: white;
}
#pageTitle_1:hover {
color: white;
}
#slider2 {
-webkit-transition: all 1s;
position: fixed;
top: 60px;
left: 200px;
width: 20px;
height: 2px;
background-color: #636363;
}
/*HERE!!*/
#projects:hover~#pageTitle_1 {
color: red;
}
#projects:hover+#slider2 {
width: 94px;
background-color: white;
}
&#13;
<!DOCTYPE html>
<html>
<body>
<div id="pageContents">
<div id="header">
<div id="lowerheader"></div>
<p id="projects">PAST<br>PROJECTS</p>
<div id="slider2"></div>
<p id="pageTitle_1">CASPAR<br>BROEKHUIZEN</p>
<div id="slider1"></div>
</div>
</div>
</body>
<script>
</script>
</html>
&#13;