微信小程式css使用技巧
1:用純CSS創建一個三角形的原理把上、左、右三條邊隱藏掉(顏色設為transparent)
.demo { width: 0; height: 0; border-width: 20px; border-style: solid; border-color: transparent transparent red transparent; }
2:設定最高高度..超過後可以滑動
max-height: 550rpx; overflow-y: scroll;
3: text-overflow 當屬性規定當文字溢出包含元素時發生的事情
clip: 修剪文本 ellipsis : 用省略号来代表被修剪的文字 string: 使用给定的字符串来代表被修剪的文字 重点是三个同时使用:text-overflow:ellipsis; white-space:nowrap; overflow:hidden;
4:overflowy hidden部分
5: margin-bottom失效
margin-bottom是下方的外边距,并不能让元素向下方移动,margin-top作为上边距,把元素“推”了下去。 希望图标距离下方30px,那么可以在ul上设置 position:absolute, bottom:30px ,(这一句我没有加同样实现了效果)另外父元素position:relative
6:強制不換行
white-space:nowrap;
感謝閱讀,希望能幫助到大家,謝謝大家對本站的支持! 更多微信小程式 css使用技巧總結相關文章請關注PHP中文網!