首页
Web开发
Windows程序
编程语言
数据库
移动开发
系统相关
微信
其他好文
会员
首页
>
Web开发
> 详细
css学习之 counter属性详解
时间:
2018-04-29 23:31:27
阅读:
296
评论:
0
收藏:
0
[点我收藏+]
标签:
学习css
,counter属性不得不了解清楚,css counter属性被几乎所有浏览器(包括IE8)支持, 但是却不常使用。本文和大家分享的就是counter属性相关内容,虽然这个属性不常用,但是希望大家需要用的时候,本文对大家有所帮助。
COUNTER-RESET
明译为计数器重置。形如: counter-reset: counter-name
常见写法为
/* Set counter-name to 0 */
counter-reset: counter-name;
/* Set counter-name to -1 */
counter-reset: counter-name -1;
/* Set counter1 to 1, and counter2 to 4 */
counter-reset: counter1 1 counter2 4;
用于在某个元素上重置counter
COUNTER-INCREMENT
couter-increment 明译为计数器重置
常用写法为
/* Increment counter-name by 1 */counter-increment: counter-name;
/* Decrement counter-name by 1 */counter-increment: counter-name -1;
/* Increment counter1 by 1, and decrement counter2 by 4 */counter-increment: counter 1 counter2 -4;
在使用 counter-increment 之前 我们必须先使用 counter-reset 在其父元素初始化一个counter
例如:
// parent element has a counter-reset// applied to instantiate itsection {
counter-reset: unicornCounter;
}
// specify the child element being countedsection h1 {
counter-increment: unicornCounter;
}
在上面的代码里 section的每一个h1元素 将会被设置counted值1
css语法规则
COUNTER-RESET 和 COUNTER-INCREMENT 的语法类似
第一位 表示具体counter标识
可以是a-z 0-9 _ - 组合的单词 但不能是关键字none, unset, initial, or inherit
来源:网络
css学习之 counter属性详解
标签:
踩
(
0
)
赞
(
0
)
举报
评论
一句话评论(
0
)
登录后才能评论!
wjunxi
加入时间:
2017-06-15
已关注
关注此人
发短消息
文章分类
默认分类(
152
)
“
wjunxi
”关注的人------(
0
)
“
wjunxi
”的粉丝们------(
0
)
友情链接
兰亭集智
国之画
百度统计
站长统计
阿里云
chrome插件
新版天听网
关于我们
-
联系我们
-
留言反馈
© 2014
mamicode.com
版权所有 联系我们:gaon5@hotmail.com
迷上了代码!