随笔分类 - css
css知识点
摘要:1.在命令行中执行:npm install animate.css --save 2.main.js 中: import animated from 'animate.css' // npm install animate.css --save安装Vue.use(animated) 3.使用 <di
阅读全文
摘要:box-shadow: 0 0 10px rgba(0, 0, 0, .2);
阅读全文
摘要:width:100px; height:40px;/*需要展示行高度*/ display: -webkit-box; /* 必须结合的属性 ,将对象作为弹性伸缩盒子模型显示 。*/ -webkit-box-orient: vertical; /* 必须结合的属性 ,设置或检索伸缩盒对象的子元素的排列
阅读全文
摘要:/* 定义滚动条样式 */ ::-webkit-scrollbar { width: 3px; //滚动条宽度 height: 5px; //滚动条高度 border-radius: 10px; //滚动条圆角 background-color: rgba(226, 226, 226, 0.897)
阅读全文