04 2021 档案

摘要:按官方文档配置scss后,VS Code会报如图所示错误,如图 解决办法: 原因是使用node-sass时需配置node路径,首先在cmd上输入where node(windows) | which node(Mac,Linux),找到node路径 C:\Users\xixi> where node 阅读全文
posted @ 2021-04-24 21:18 必慎 阅读(473) 评论(0) 推荐(0)
摘要:使用 flex 布局竖直排列时,竖直换行后子元素未撑开父元素的问题解决 现有 html 结构如下: <div class="wrap"> <ul> <li>1</li> <li>2</li> <li>3</li> <li>4</li> <li>5</li> <li>6</li> <li>7</li> 阅读全文
posted @ 2021-04-21 23:20 必慎 阅读(3815) 评论(0) 推荐(1)
摘要:响应式网站中的导航栏自动合并 实现当屏幕宽度减小时,右侧导航栏合并进 more 选项中 转载自https://bradfrost.github.io/this-is-responsive/patterns.html 原网址实例:https://codepen.io/Dreamdealer/pen/w 阅读全文
posted @ 2021-04-20 22:42 必慎 阅读(225) 评论(0) 推荐(0)