学习css常用基本层级伪类属性选择器

常见的css选择器包含:常用选择器、基本选择器、层级选择器、伪类选择器、属性选择器,其中常用选择器分为:1.html选择符*{}//给页面上所有的标签设置模式;2.类选择符.hcls{}//给class是hcls的一类标签设置模式;3.id选择符#h3{}//给id是h3的标签设置样式;4.关联选择符#div h1、#div h1.ljhcls;5.div,h1,pmspan,button{}基本选择器分为:first-child第一个、::first-letter第一个字母、::fist-line第一行、:last-child最后一个元素、:nth-child(n)第几个元素,层级选择器分为a,b组合、a b后代、a>b子代、a+b a的一个是b,伪类选择器:hover鼠标经过、:focus焦点、::selection文字选中背景色,属性选择器[属性]、[属性=值]、[属性~=值]//包含任意一个值、[属性^=值]以什么开始、[属性$=值]以什么结束。

  1 <!DOCTYPE html>
  2 <html lang="en">
  3 <head>
  4     <meta charset="UTF-8">
  5     <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6     <title>学习css常用基本层级伪类属性选择器</title>
  7     <style type="text/css">
  8     /*常用选择器*/
  9     /*html选择符*//* *{}给页面上所有的标签设置模式*/
 10     *{
 11         color: royalblue;
 12     }
 13     /*类选择符*//*.hcls{}给class是hcls的一类标签设置模式;*/
 14     .hcls{
 15         font-weight: bold;
 16     }
 17     /*id选择符*//*#h3{}给id是h3的标签设置样式 */
 18     #h3{
 19         font-style: italic;
 20     }
 21     /*关联选择符 */
 22     div h1{
 23         font-size: 18px;
 24     }
 25     /*组合选择符*/
 26     div,button{
 27         background-color: #ccc;
 28         margin: 5px;
 29     }
 30     /*基本选择器*/
 31     /*::first-letter */
 32     #h3::first-letter{
 33         font-size: 30px;
 34     }
 35      /*::first-line */
 36      .h4::first-line{
 37          color: red;
 38      }
 39      /*:first-child */
 40      .shuiguo li:first-child{
 41         color:#f90;
 42      }
 43      /*:last-child */
 44      .shuiguo li:last-child{
 45         text-decoration: line-through;
 46      }
 47       /*:nth-child(n) */
 48       .shuiguo li:nth-child(2){
 49         text-decoration: overline;
 50         background-color: sienna;
 51      }
 52      /*层级选择器*/
 53      /*a,b组合 */
 54      #h3,.box{
 55         background-color: #ccc;
 56         margin: 5px;
 57     }
 58     /*a b a后代中的b */
 59     .h4 p{
 60         text-decoration: overline;
 61         font-size: 30px;
 62     }
 63     /*a>b a的子元素b */
 64     div>p{
 65         font-style: italic;
 66     }
 67     /*a+b a后面的第一个元素b */
 68     div+span{
 69         height: 40px;
 70         background-color: teal;
 71         color: #fff;
 72     }
 73     /*伪类选择器*/
 74     /*:hover*/
 75     input:hover{
 76      border-radius: 5px;
 77     }
 78     /*:focus焦点*/
 79     input:focus{
 80         outline-color: teal;
 81     }
 82     /*::selection文字选中背景色*/
 83     p::selection{
 84         color: #fff;
 85     }
 86     /* 属性选择器 */
 87     .shuiguo li[title]{
 88         font-size: 100px;
 89         background-color: aqua;
 90     }
 91     /* 选择器[属性=值]  值唯一才可以用,包含多个值的测试不行*/
 92     .shuiguo li[title=pg]{
 93     color: red;
 94     list-style: square;
 95     background-color: #fff;
 96     font-size: 60px!important;
 97     }
 98     /* 选择器[属性^=值]以什么开始 */
 99     .shuiguo li[title^=pg]{
100         font-size: 20px;
101         margin: 20px;
102     }
103     /* 选择器[属性$=值]以什么结束 */
104     .shuiguo li[title$=xj]{
105         background-color: #ccc;
106     }
107     </style>
108 </head>
109 <body>
110     <div class="hcls" id="h3">
111         <h1>html+css+javascript is very much!</h1>
112     </div>
113     <div class="hcls h4"><!--多个class用空格分开,id是唯一的-->
114         <p>If not for life, I can go to bed early and get up early;If not for life, I can go to bed early and get up early;
115             If not for life, I can go to bed early and get up early;If not for life, I can go to bed early and get up early;
116             If not for life, I can go to bed early and get up early</p><p>多个class用空格分开,id是唯一的</p>
117             <p>多个class用空格分开,id是唯一的</p>
118     </div>
119     <span>div后面的第一个元素</span>
120     <ul class="shuiguo">
121         <li title="pg">苹果</li>
122         <li title="xg pg">西瓜</li>
123         <li title="pg xj">香蕉</li>
124     </ul>
125     <button class="box">按钮</button>
126     <form action="">
127         <p>用户名</p><input type="text" name="" id="">
128     </form>
129 </body>
130 </html>

原文地址:https://www.cnblogs.com/dhnblog/p/12340054.html

时间: 2024-10-20 18:38:14

学习css常用基本层级伪类属性选择器的相关文章

前端学习 --Css -- 子元素的伪类

:first-child 寻找父元素的第一个子元素,在所有的子元素中排序: :last-child 寻找父元素的最后一个子元素,在所有的子元素中排序: :nth-child 寻找父元素中的指定位置子元素,在所有的子元素中排序: :first-of-type 寻找指定类型中的第一个子元素 :last-of-type 寻找指定类型中的最后一个子元素 :nth-of-type 寻找指定类型中的指定子元素 可以使用even,来找到偶数的子元素 可以使用odd,来找到奇数的子元素 demo: <!DOCT

css样式表中四种属性选择器

css样式表中四种属性选择器1> 简易属性 tag[class]{ font-weight:bold } It will affect all tag with any class. e.g. <h2 class="old" > or <h2 class="new"> 2>精确属性值 a[href="http://www.cnblogs.cn"][title="textTitle"]{fon

HTML学习笔记 CSS块元素加伪类选择器 第三节 (原创)

<!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8"> <title>伪类选择器</title> <style> div { border: 1px solid red; width: 400px; height: 150px; font-size: 35px; } .temple2 { /*隐藏超出的区域*/ ove

CSS 3 中的伪类选择器

伪元素选择器是指并不是针对真正的元素使用的选择器,而是针对CSS中已经定义好的伪元素使用的选择. 选择器:伪元素{属性:值} 选择器.类名:伪元素{属性:值} 在CSS中,主要有如下四个伪元素选择器 1.first-line伪元素选择器用于向某个元素中的第一行使用样式. 2.first-letter伪元素选择器用于向某个元素中的文字的首字母或第一个中字使用样式. 3.before伪元素选择器用于在某个元素之前插入一些内容. 4.after伪元素选择器用于在某个元素之后插入一些内容.

CSS设计指南之伪类

伪类这个叫法源自它们与类相似,但实际上并没有类会附加到标记中的标签上.伪类分两种. UI伪类会在HTML元素处于某个状态时(比如鼠标指针位于链接上),为该元素应用CSS样式. 结构化伪类会在标记中存在某种结构上的关系时(比如某个元素是一组元素中的第一个或最后一个),为相应元素应用CSS样式. 一.UI伪类 1.链接伪类 Link:此时,链接就在那儿等着用户点击. Visited:用户此前点击过这个链接. Hover:鼠标指针正悬停在链接上. Active:链接正在被点击(鼠标在元素上按下,还没有

CSS3学习手记(二) 伪类选择器

伪类选择器 动态伪类 UI元素状态伪类 CSS3结构类 否定选择器 伪元素 动态伪类 这些伪类并不存在于HTM中,只有当用户和网站交互的时候才能体现出来 锚点伪类 :link  :visited 用户行为伪类 :hover :active :focus(获取鼠标焦点) UI元素状态伪类(CSS3新增) 我们把:enabled,:disabled,:check伪类称为UI元素状态伪类 兼容IE9以上  check只兼容OPera <!DOCTYPE html> <html> <

css笔记03:伪类first-child

1. 匹配第一个 <p> 元素 在下面的例子中,选择器匹配作为任何元素的第一个子元素的 p 元素: <html> <head> <style type="text/css"> p:first-child { color: red; } </style> </head> <body> <p>some text</p> <p>some text</p> <

伪类与选择器

1.first-of-type:第一个eg:选中了 div里的第一个p,以及div之外的第一个p. 2.last-of-type(最后一个) 外国人从0开始计数 3.nth-of-type(number)  从上向下数 eg: nth-of-type(1) 选中第二个 4.ntn-last-of-type(number) 从下向上数 egnth-last-of-type(1) :倒数第二个 5.first-child:第一个子元素且位置必须是第一个,会受到其它元素的位置影响 eg:p:first

javaweb基础学习—— css

1 导入方式:(优先级:离的越近,优先级越高.导入样式优先级最低) 内部样式,行内样式,外部样式,导入样式. <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> <style> div,p,h1{ /*宽度*/ width:100px; /*高度*/ height:10