
css
心为醒SS
喜欢前端,热爱代码,源由心生
展开
-
scroll-view在uniapp中隐藏滚动条
在scroll-view中加入以下代码::-webkit-scrollbar{ width: 0; height: 0; color: transparent; }附上完整代码<scroll-view class="scroll" scroll-x show-scrollbar > <view class="nav" v-for="(item,index) in navs" :key="index"> <text&g原创 2022-03-18 19:46:54 · 554 阅读 · 0 评论 -
link引入media,通用样式失效问题
通过media可以对不同分辨率的界面进行响应不同的样式,怎么使用很多文章都有讲解,下面说说引入后通用样式失效的问题:<link rel="stylesheet" type="text/css" media="screen and (max-width:960px)" href="link.css">这里设置了一个分辨率小于等于960px的一个样式表`.color { width: 100px; height: 100px; background-color: re原创 2022-03-10 18:17:16 · 569 阅读 · 0 评论 -
width 设置为100%和auto
如果width设置为100%,那么width的宽度就是父元素的宽度(一定要设置高)如果width设置为auto,那么width的宽度就是内容+margin+padding+border原创 2022-03-10 13:15:17 · 469 阅读 · 0 评论