
css问题记录
文章平均质量分 56
uncle十三
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
2、文本换行、超出省略
1. 不超一行 <style> .one { width: 200px; background: #000; color: red; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; } </style> <div class="one">文字不超过1行,文字不超过1行,文字不超过1行</div> 效果 2. 不超多行 <style> .tw.原创 2021-12-16 18:37:54 · 1858 阅读 · 2 评论 -
1、元素高度随宽度变化自适应
padding-bottom/top 属性使用百分比,跟width相同,都是按照父元素宽度的比例定的。 <style> .box { width: 200px; height: 200px; background: #000; position: relative; } .item { width: 80%; padding-bottom: 10%;/* 关键 */ background: #fff; position: absolute; left: ..原创 2021-12-16 17:12:45 · 468 阅读 · 1 评论