CSS中的element + element选择器用于设置放置在第一个指定元素之后(而不是内部)的每个元素的样式。
语法如下:
element + element {//CSS Property
范例1:在下面的程序中, " p + p"选择器选择并设置每对连续段落元素的样式。如果连续超过2个p元素, 然后为最后两个元素设置样式。
<
!DOCTYPE html>
<
html >
<
head >
<
title >
CSS | element+element Selector
<
/ title >
<
style >
p + p {
color:white;
background: green;
}
<
/ style >
<
/ head >
<
body style = "text-align: center;
" >
<
h1 style = "color:green;
" >
lsbin
<
/ h1 >
<
h2 >
CSS | element+element Selector<
/ h2 >
<
p >
This is the first paragraph.<
/ p >
<
p >
This is the second paragraph<
/ p >
<
p >
This is the third paragraph<
/ p >
<
div >
<
p >
This is the forth paragraph<
/ p >
<
p >
This is the fifth paragraph.<
/ p >
<
/ div >
<
/ body >
<
/ html >
输出如下:
文章图片
范例2:
<
!DOCTYPE html>
<
html >
<
head >
<
title >
CSS | element+element Selector
<
/ title >
<
style >
div + p {
color:white;
background: green;
padding:2px;
}
<
/ style >
<
/ head >
<
body style = "text-align: center;
" >
<
div >
<
h2 style = "color:green;
" >
CSS | element+element Selector
<
/ h2 >
<
p >
A computer science portal for geeks.
<
/ p >
<
/ div >
<
p >
Geeks Classes is a quick course to cover
algorithms questions.<
/ p >
<
p >
This paragraph will not be styled.<
/ p >
<
/ body >
<
/ html >
输出如下:
文章图片
【CSS 元素+元素选择器用法介绍】支持的浏览器:下面列出了element + element选择器支持的浏览器:
- 苹果Safari
- 谷歌浏览器
- 火狐浏览器
- 歌剧
- Internet Explorer 7.0
推荐阅读
- 按排序顺序打印字符串数组,而不将一个字符串复制到另一个字符串中
- 深入redis(发布订阅的使用和事务操作介绍)
- redis有序集sorted set类型和HyperLogLog结构操作使用介绍
- redis列表list类型和集合set类型使用详解
- redis字符串string类型和散列hash类型操作使用详解
- redis命令和关键字命令介绍
- redis深入教程(配置redis、redis所有数据类型详解)
- redis入门介绍以及在windows和linux上安装redis
- 构建自定义模块 — Quill富文本编辑器快速入门中文文档