最新下载
热门教程
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
微信小程序中css的使用技巧总结
时间:2022-06-25 08:55:40 编辑:袖梨 来源:一聚教程网
1:用纯CSS创建一个三角形的原理把上、左、右三条边隐藏掉(颜色设为 transparent)
.demo {
width:0;
height:0;
border-width:20px;
border-style:solid;
border-color:transparenttransparentredtransparent;
}
|
2:设置最高高度..超过后可以滑动
max-height:550rpx;
overflow-y:scroll;
|
3: text-overflow 当属性规定当文本溢出包含元素时发生的事情
clip: 修剪文本
ellipsis : 用省略号来代表被修剪的文字
string: 使用给定的字符串来代表被修剪的文字
重点是三个同时使用:text-overflow:ellipsis;white-space:nowrap;overflow:hidden;
|
4:overflow: hidden当强制不换行的时候,使用overflow:hidden隐藏超过界面的部分
5: margin-bottom失效
margin-bottom是下方的外边距,并不能让元素向下方移动,margin-top作为上边距,把元素“推”了下去。
希望图标距离下方30px,那么可以在ul上设置position:absolute,bottom:30px,(这一句我没有加同样实现了效果)另外父元素position:relative
|
6:强制不换行
white-space:nowrap;
|
自动换行
div{
word-wrap: break-word;
word-break:normal;
}
|
强制英文单词断行
div{
word-break:break-all;
}
|
相关文章
- 《原神》5.2卡池抽取建议 11-14
- 《原神》5.2版本新怪物介绍 11-14
- 《原神》希诺宁增伤触发方法 11-14
- 《原神》循音觅奇活动入口 11-14
- 《原神》循音觅奇兑换码获取方法 11-14
- 《原神》花羽会活动飞行技巧介绍 11-14