Swift
编程
Swift51.com
首页
社区
▼
资讯
问答
分享
建议
开源代码
Xcode下载
Swift教程
hot
登录
注册
当前位置:
首页
> 分享
欢迎加入QQ讨论群258996829
苹果6袋
6
麦子学院
css学习之 counter属性详解
发布时间:2018-04-29 23:30 回复:0 查看:2729 最后回复:2018-04-29 23:30
学习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
来源:网络
取消引用
您还未登录,
请先登录
提 问
热门帖子
iDev 全平台开发者大会门票免费送!限量10张!
苹果Mac Pro垃圾桶 最低配的ME253CH
本人想买个苹果电脑搞开发,哪位大侠指点下
求助:failable initializer 'init(name:)' cannot override a non-failable initializer
为庆祝Swift发布1个月,雨燕社区正式上线。
在UITextFeild里输入数据,这个数据怎么做加减乘除?
Swift 高仿喜马拉雅FM
要成为自由职业者?先要学会苹果的Swift哦
关于嵌入式引用\()
用swift实现的调用系统相机,相册的DEMO
Swift 教程
最新帖子
swift_5.3可以更新了
swift如何实现左滑删除
IBM Swift Sandbox访问
Thread 18: Fatal error: 'try!' expression unexpectedly raised an error: Error
跟随手势滑动的ScrollableTextField
Swift5.0什么时候出
什么时候出5.0
PerfectTemplate 无法编译
WWDC19 苹果宣布全新 UI 框架 SwiftUI
水平滚动视图Carousel
Xcode 9.4下载