
scss
xuxu_qkz
每天就要学芝麻大小!!!
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
scss语法
scss是css的预编译语言,写法更灵活 声明变量 1.使用$符号来标识变量$nav-color: #F90; nav { $width: 100px; width: $width; color: $nav-color; }//编译后nav { width: 100px; color: #F90; }嵌套CSS 规则#content { article {原创 2018-05-03 15:14:37 · 942 阅读 · 0 评论 -
切换浏览器窗口 elementui 的tabs组件出现蓝色边框问题
切换浏览器窗口 elementui 的tabs组件出现蓝色边框问题 如图: 解决办法:在commos.scss中加入属性覆盖 .theme{ .el-tabs__item:focus.is-active.is-focus:not(:active) { box-shadow: none; border-top-left-radius: 20px;...原创 2018-07-18 14:27:40 · 2443 阅读 · 0 评论 -
css 彩色按钮(七彩葫芦娃)
css 彩色按钮 common.scss $blue: #48b0f7; $light-blue:#3A71A8; $red:#C03639; $pink: #E65D6E; $green: #30B08F; $tiffany: #4AB7BD; $yellow:#FEC171; $panGreen: #30B08F; @mixin colorBtn($color) { backgr...原创 2018-07-12 15:51:58 · 1895 阅读 · 0 评论