
css
linlongdeng
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
css图文混合垂直居中
发现图文混合垂直居中,单纯使用 line-height,height 相等,已经没什么效果了,如下面元素,只有加上使用;display:flex;,效果才出来了 <div style="line-height: 40px;height: 40px;display:flex;"> <span style="margin:auto 10px auto 10px;">商品图片...原创 2019-06-19 23:19:26 · 810 阅读 · 0 评论 -
按钮不可用的样式实践
css的按钮不可用,方式很多,看了vux的按钮不可用的样式,就是把原来的颜色和背景透明的60%,很简单 .btn-disabled { color: rgba(255, 255, 255, 0.6) !important; background: rgba(48, 148, 248, 0.6) !important; } vuex的效果 这个还是麻烦,能不能直接改透明度,发现还真...原创 2019-06-20 17:33:21 · 1065 阅读 · 0 评论