
css
iteye_5129
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
text-overflow文本溢出
[size=x-large][color=red]建议使用text-overflow:ellipsis;文本超出后以省略号形式显示[/color][/size] [code="js"] 菜鸟教程(runoob.com) div.test { white-space:nowrap; width:12em; overflow:hidden; bo...原创 2017-01-10 09:56:36 · 153 阅读 · 0 评论 -
word-break文本换行
[color=red][size=large]建议使用word-break:keep-all,不拆分单词[/size][/color] [code="js"] 菜鸟教程(runoob.com) p.test1 { width:9em; border:1px solid #000000; word-break:keep-all; } p.test2 { wi...原创 2017-01-10 10:09:50 · 136 阅读 · 0 评论 -
transtion过渡宽高背景旋转
[color=red][size=x-large]复制代码即可[/size][/color] [code="js"] div { width: 100px; height: 100px; background: red; -webkit-transition: width 2s, height 2s, -webkit-tran...原创 2017-01-10 11:34:23 · 156 阅读 · 0 评论