css3
你过来呀啊
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
css 多行文字垂直居中
display: flex; flex-direction: column; justify-content: space-around;原创 2021-12-14 15:13:25 · 1057 阅读 · 0 评论 -
vue 移动端禁止放大页面
打包后的index.html 头部添加:<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0, viewport-fit=cover, user-scalable=0">原创 2021-07-26 10:24:44 · 359 阅读 · 0 评论 -
微信小程序固定底栏适配全面屏
如果你的小程序页面按钮有用fixed定位到底部的话,那你一定会遇到兼容全面屏的坑(与底部横条重叠)。查了下文档,发现能用的就只有一个api 而已。下面准备封装全局app.js方法JavaScript/** * 判断设备是否为全面屏 */ checkFullSucreen: function () { const self = this wx.getSystemInfo({ success: function (r...转载 2021-05-17 16:47:11 · 917 阅读 · 0 评论 -
li超出宽度,用省略号代替
li{width:200px;overflow: hidden;white-space:nowrap;text-overflow:ellipsis;}原创 2020-05-06 11:26:55 · 400 阅读 · 0 评论
分享