.mui-bar-nav~.mui-content这两个class之间的~什么意思?

简介:

匹配 .mui-bar-nav 之后所有的 .mui-content(即同级的其他类或元素)。

1
2
3
4
5
6
7
8
9
10
11
<!DOCTYPE html>< html  lang = "zh-cn" >< head >
   < meta  charset = "UTF-8" >
   < title >Document</ title >
 
   < style >
     .a ~ .b {      color: red;    }
   </ style ></ head >< body >
   < div  class = "a" >a    < div  class = "b" >b1</ div >
   </ div >
   < div  class = "b" >b2</ div >
   < div  class = "b" >b3</ div ></ body ></ html >

可以看到 b1 是不变色的,b2 和 b3 是会改变颜色的。


更多关于“~”资料:https://developer.mozilla.org/en-US/docs/Web/CSS/General_sibling_selectors

本文转自  小旭依然  51CTO博客,原文链接:http://blog.51cto.com/xuyran/1784913

相关文章
|
容器
layui框架实战案例(23):在layui-tab-content中layui-progress-bar在html拼接中不显示lay-percent的解决方案
layui框架实战案例(23):在layui-tab-content中layui-progress-bar在html拼接中不显示lay-percent的解决方案
384 0
|
8月前
|
Web App开发 前端开发
CSS id 和 class
【5月更文挑战第3天】CSS id 和 class。
52 10
|
4月前
|
小程序 容器
微信小程序常用组件的简单使用 view,scroll-view,swiper,swiper-item,text,rich-text,button,image
本文介绍了微信小程序中常用组件的使用方法,包括view、scroll-view、swiper与swiper-item、text与rich-text、button以及image组件。详细解释了各组件的功能、属性以及如何在小程序页面中进行使用。
微信小程序常用组件的简单使用 view,scroll-view,swiper,swiper-item,text,rich-text,button,image
|
前端开发
前端第二课,HTML,alt,title,width/heigh,border,<a>超链接,target,tr,td,th
前端第二课,HTML,alt,title,width/heigh,border,<a>超链接,target,tr,td,th
|
8月前
|
前端开发
css教程-li的list-style-type属性
通过设置 `list-style-type`属性,你可以根据需求为列表项设置不同的标志样式,从而改变列表的外观。 买CN2云服务器,免备案服务器,高防服务器,就选蓝易云。百度搜索:蓝易云
90 4
HTML中<button />和<input type=“button“/>的区别
HTML中<button />和<input type=“button“/>的区别
141 0
|
小程序 前端开发 容器
【微信小程序】常用组件基本使用(view/scroll-view/swiper、text/rich-text、button/image)
【微信小程序】常用组件基本使用(view/scroll-view/swiper、text/rich-text、button/image)
259 0
|
JavaScript 前端开发 API
Mui常用的方法
Mui常用的方法
Mui常用的方法