博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
CSS 笔记六(Image/Attribute Selectors)
阅读量:4452 次
发布时间:2019-06-07

本文共 2136 字,大约阅读时间需要 7 分钟。

 Image Opacity / Transparency

  • The CSS opacity property is a part of the CSS3 recommendation.

Example

1 img {2     opacity: 0.4;3     filter: alpha(opacity=40); /* For IE8 and earlier */4 }5 6 img:hover {7     opacity: 1.0;8     filter: alpha(opacity=100); /* For IE8 and earlier */9 }

Image Sprites

  • An image sprite is a collection of images put into a single image.

Example

navigation images

1  2  3  4 52 53 54 55 
60 61 62

CSS Attribute Selectors

  • Style HTML elements that have specific attributes or attribute values.

1> CSS [attribute] Selector

  • Used to select elements with a specified attribute.

2> CSS [attribute="value"] Selector

  • Used to select elements with a specified attribute and value.

Example

1 a[target] {2     background-color: yellow;3 } 4 a[target="_blank"] {5     background-color: blue;6 }

3> CSS [attribute~="value"] Selector

  • Used to select elements with an attribute value containing a specified word.

4> CSS [attribute*="value"] Selector

  • Used to select elements whose attribute value contains a specified value.
1 [title~=flower] { 2     border: 5px solid yellow; 3 } 4 title="klematis flower"   > yes 5 title="flower"            > yes 6 title="tree_flower"       > no 7  8 [class*="te"] { 9     background: yellow;10 }11 class="first_test"        > yes12 class="mytest"            > yes

5> CSS [attribute|="value"] Selector

  • Used to select elements with the specified attribute starting with the specified value.

6> CSS [attribute^="value"] Selector

  • Used to select elements whose attribute value begins with a specified value.
1 [class|=top] { 2     background: yellow; 3 } 4 class="top-header"    > yes 5 class="top-text"      > yes 6 class="topcontent"    > no 7  8 [class^="top"] { 9     background: yellow;10 11 class="top-header"    > yes12 class="top-text"      > yes13 class="topcontent"    > yes

7> CSS [attribute$="value"] Selector

  • Used to select elements whose attribute value ends with a specified value.
1 [class$="test"] {2     background: yellow;3 }4 class="first_test"      > yes    5 class="my-test"         > yes

 

转载于:https://www.cnblogs.com/hzj680539/p/5088987.html

你可能感兴趣的文章
奥斯卡设立流行奖,网友表示烂透了
查看>>
HDU 4114 Disney's FastPass
查看>>
Codeforces 509C Sums of Digits
查看>>
Windows7 快捷键
查看>>
Spring框架中获得DataSource对象的方法
查看>>
bzoj1115: [POI2009]石子游戏Kam
查看>>
百度2011实习生招聘笔试题
查看>>
机器学习之SVD奇异值
查看>>
android开发 装饰者模式
查看>>
Access数据库SQL注入(Access SQL Injection)
查看>>
I Hate It
查看>>
usaco 2.1 sort3...想法题...
查看>>
【转】算法的流程图表示
查看>>
jquery .filter()过滤器
查看>>
视图中增加一个自动增加的字段
查看>>
基于axis2的webservice和android简单的本地数据交互(上)
查看>>
[.Net Core] 简单使用 Mvc 内置的 Ioc
查看>>
ef 多条数据插入处理方案(据说还有更好的)
查看>>
BigDecimal 学习比较
查看>>
反演+分块套分块——bzoj2154
查看>>