css中:not()选择器用法 :not 伪类选择器可以筛选不符合表达式的元素,:not(selector)其中的selector为css选择器 ul li:not(:first-child) ul li:not(.text) //不包含class="text"的元素 :not(p) //非段落元素 ul li:not(:first-child):not(:last-child) //not可叠加使用 jQuery中.not()方法 not(...
css中:not()选择器用法 :not 伪类选择器可以筛选不符合表达式的元素,:not(selector)其中的selector为css选择器 ul li:not(:first-child) ul li:not(.text) //不包含class="text"的元素 :not(p) //非段落元素 ul li:not(:first-child):not(:last-child) //not可叠加使用 jQuery中.not()方法 not(...
selector:这是你想要排除的选择器。 1、排除特定类型的元素 body:not(p){color:blue;} 这段代码将为 body 元素内除了 p 元素之外的所有元素设置文本颜色为蓝色。 2、排除具有特定类的元素 div:not(.highlight){background-color:gray;} 这段代码将为 div 元素内不具有 highlight 类的所有元素设置背景颜色为...
:not(selector) :not(p) 选择非 selector 元素的元素(即反选) ::selection ::selection{color: red} 选择光标选中的文字 :enabled 【主要用于表单元素】input[type="text"]:enabled 选择器匹配每个启用的的元素 :disabled 【主要用于表单元素】input[type="text"]:disabled 选择器匹配每个禁用的的元素 :checke...
属性选择器(Attribute Selector):通过元素的属性选择 HTML 元素。属性选择器可以根据属性名和属性值进行选择。 如下代码,input[type="text"]选择器将选择所有type属性为"text"的 <input> 元素。 input[type="text"]{border:1pxsolid gray;} 后代选择器(Descendant Selector):通过指定元素的后代关系选择 HTML 元素...
文章目录 一、 ID 选择器 1、简介 2、代码示例二、通配符选择器 1、简介 2、代码示例三、CSS 选择器使用注意事项一、 ID 选择器 --- 1、简介 ID 选择器 使用 " #...id " 选择 指定的 某一个 标签 , 使用 ID 选择器 步骤如下 : 首先 , 在 HTML 中 设置 标签的 ID ; 标签内容然后 , 在 CSS...
9、群组选择器(selector1,selector2,…,selectorN) 群组选择器是将具有相同样式的元素分组在一起,每个选择器之间使用逗号“,”隔开,如上面所示selector1,selector2,...,selectorN。这个逗号告诉浏览器,规则中包含多个不同的选择器,如果不有这个逗号,那么所表达的意就完全不同了,省去逗号就成了我们前面所说的...
所有设置了 .form-control 类的<input>、<textarea> 和<select> 元素都将被默认设置宽度属性为 width: 100%;。将 label 元素和前面提到的控件包裹在 .form-group 中可以获得最好的排列。 Email address Password File input Example block-level help text here. Check me out Submit Copy <form> <...
Striped tables are styled via the :nth-child CSS selector, which is not available in Internet Explorer 8. #First NameLast NameUsername 1 Mark Otto @mdo 2 Jacob Thornton @fat 3 Larry the Bird @twitter <table class="table table-striped"> ... </table> Bordered table Add .table-bordered...
:not(selector) 选择器匹配每个元素是不是指定的元素/选择器。 2、实例 为每个并非<p>元素的元素设置背景颜色: :not(p){ background:#ff0000; } 7.2.7 :focus 选择器 1、定义 :focus选择器用于选择具有焦点的元素。 2、实例 一个输入字段获得焦点时选择的样式: ...