CSS类选择器怎么用
这篇文章主要为大家展示了“CSS类选择器怎么用”,内容简而易懂,条理清晰,希望能够帮助大家解决疑惑,下面让小编带领大家一起研究并学习一下“CSS类选择器怎么用”这篇文章吧。
CSS 属性选择器
对带有指定属性的 HTML 元素设置样式。
可以为拥有指定属性的 HTML 元素设置样式,而不仅限于 class 和 id 属性。
只有在规定了 !DOCTYPE 时,IE7 和 IE8 才支持属性选择器。
在 IE6 及更低的版本中,不支持属性选择。
实例:属性选择器
<html><head><styletype="text/css">[title]{color:red;}</style></head><body><h2>带有title属性,可以应用样式:</h2><h3title="Helloworld">Helloworld</h3><atitle="demo"href="demo.html">Helloworld</a><hr/><h2>没有title属性,无法应用样式:</h2><h3>Helloworld</h3><ahref="demo.html">Helloworld</a></body></html>
注释:上面的例子为带有 title 属性的所有元素设置样式。
实例:属性和值选择器
<html><head><styletype="text/css">[title=Hello]{border:5pxsolidblue;}</style></head><body><h2>可以应用样式:</h2><imgtitle="Hello"src="hello.gif"/><br/><atitle="Hello"href="hello.html">Helloworld</a><hr/><h2>无法应用样式:</h2><ptitle="greeting">Helloworld</p><aclass="Hello"href="hello.html">Helloworld</a></body></html>
注释:下面的例子为 title="Hello" 的所有元素设置样式。
设置表单的样式
属性选择器在为不带有 class 或 id 的表单设置样式时特别有用:
<!DOCTYPEhtml><html><head><style>input[type="text"]{width:150px;display:block;margin-bottom:10px;background-color:yellow;font-family:Verdana,Arial;}input[type="button"]{width:120px;margin-left:35px;display:block;font-family:Verdana,Arial;}</style></head><body><formname="input"action=""method="get"><inputtype="text"name="Name"value="Bill"size="20"><inputtype="text"name="Name"value="Gates"size="20"><inputtype="button"value="ExampleButton"></form></body></html>
以上是“CSS类选择器怎么用”这篇文章的所有内容,感谢各位的阅读!相信大家都有了一定的了解,希望分享的内容对大家有所帮助,如果还想学习更多知识,欢迎关注亿速云行业资讯频道!
声明:本站所有文章资源内容,如无特殊说明或标注,均为采集网络资源。如若本站内容侵犯了原著者的合法权益,可联系本站删除。