CSS 属性选择器

2019-05-10  本文已影响0人  maskerII


<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>CSS 属性选择器</title>
    <style>
        [title]{color: blue}
        [title="runoob"]{color: #4CAF50;border:5px solid yellow;}
        [title~=hello]{color: #4CAF50;border: 2px dashed purple;}
        [lang|=en]{color: #2196F3;border: 3px dashed red;}

        input[type="text"]{
            width: 150px;
            display: block;
            margin-bottom: 10px;
            background-color: yellow;
        }

        input[type="button"]{
            width: 120px;
            margin-left: 35px;
            display: block;
        }
    </style>
</head>
<body>
<h2> [title] Demo</h2>
<h3 title="Hello world">Hello world</h3>
<a title="runoob.com" href="//www.runoob.com/">runoob.com</a>

<h2>[title=runoob]</h2>
<h3>将适用于:</h3>
<img src="images/img_lights.jpg" title="runoob" width="300" height="200"> <br>
<a title="runoob" href="CSS%20伪类.html">runoob</a> <br>
<hr>

<h3>将不适用于:</h3>
<p title="greeting">Hi</p>
<a class="runoob" href="CSS%20伪类.html">runoob</a>
<a title="ruboob2">runoob2</a>


<h2>[title~=hello]</h2>
<h3>将适用于:</h3>
<p title="hello world">World!</p>
<h4 title="Student hello">Hello Css Student</h4>

<h3>将不适用于</h3>
<p class="hello">hello</p>
<p title="student">Student</p>

<h2>[lang|=en]</h2>
<h3>将适用于</h3>
<p lang="en">Hello</p>
<p lang="en-us">Hi</p>
<p lang="en-gb">Ello!</p>

<h3>将不适用于:</h3>
<p lang="us">Hi</p>
<p lang="no">Hei</p>

<h2>表单样式</h2>
<form name="input" action="demo-form.php" method="get">
    Firstname:<input type="text" name="fname" value="Peter" size="20">
    Lastname:<input type="text" name="lname" value="Griffin" size="20">
    <input type="button" value="Example Button">
</form>



</body>
</html>

<!--

具有特定属性的HTML元素样式
具有特定属性的HTML元素样式不仅仅是class和id。

注意:IE7和IE8需声明!DOCTYPE才支持属性选择器!IE6和更低的版本不支持属性选择器。

属性选择器
下面的例子是把包含标题(title)的所有元素变为蓝色:

实例
[title]
{
    color:blue;
}

-->

<!--


属性和值选择器
下面的实例改变了标题title='runoob'元素的边框样式:

实例
[title=runoob]
{
    border:5px solid green;
}
-->

<!--


属性和值的选择器 - 多值
下面是包含指定值的title属性的元素样式的例子,使用(~)分隔属性和值:

实例
[title~=hello] { color:blue; }

-->


<!--

下面是包含指定值的lang属性的元素样式的例子,使用(|)分隔属性和值:

实例
[lang|=en] { color:blue; }

-->


<!--

表单样式
属性选择器样式无需使用class或id的形式:

实例
input[type="text"]
{
    width:150px;
    display:block;
    margin-bottom:10px;
    background-color:yellow;
}
input[type="button"]
{
    width:120px;
    margin-left:35px;
    display:block;
}

-->

<!--

CSS 属性选择器 *=, |=, ^=, $=, *= 的区别
先上总结:

"value 是完整单词" 类型的比较符号: ~=, |=

"拼接字符串" 类型的比较符号: *=, ^=, $=


1.attribute 属性中包含 value: 

[attribute~=value] 属性中包含独立的单词为 value,例如:

[title~=flower]   <img src="/i/eg_tulip.jpg" title="tulip flower" />
[attribute*=value] 属性中做字符串拆分,只要能拆出来 value 这个词就行,例如:

[title*=flower]   <img src="/i/eg_tulip.jpg" title="ffffflowerrrrrr" />


2.attribute 属性以 value 开头:

[attribute|=value] 属性中必须是完整且唯一的单词,或者以 - 分隔开:,
例如:[lang|=en]   <p lang="en">  <p lang="en-us">
[attribute^=value] 属性的前几个字母是 value 就可以,例如:

[lang^=en]   <p lang="ennn">


3.attribute 属性以 value 结尾:

[attribute$=value] 属性的后几个字母是 value 就可以,例如:
a[src$=".pdf"]

-->


上一篇 下一篇

猜你喜欢

热点阅读