stylus选中hover元素的兄弟元素下的子元素
Posted 世界,太精彩
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了stylus选中hover元素的兄弟元素下的子元素相关的知识,希望对你有一定的参考价值。
stylus设置兄弟元素样式:
鼠标浮动在 .video-li 元素上时,.video-li 兄弟中 .video-info 下的 .word 显示。
.video-li
&:hover
~ .video-info
.word
visibility visible
设置 h1 兄弟元素中,class 为 p1 的元素样式:
<!DOCTYPE html> <html> <head> <style type="text/css"> h1 ~ .p1 {margin-top:50px;} </style> </head> <body> <h1>This is a heading.</h1> <p>This is paragraph.</p> <p>This is paragraph.</p> <p>This is paragraph.</p> <p>This is paragraph.</p> <p class="p1">This is paragraph.</p> </body> </html>
以上是关于stylus选中hover元素的兄弟元素下的子元素的主要内容,如果未能解决你的问题,请参考以下文章