摘要: 隐藏input输入框的增减按钮/* 谷歌 */ input::-webkit-outer-spin-button, input::-webkit-inner-spin-button { -webkit-appearance: none; appearance: none; margin: 0;} / 阅读全文
posted @ 2023-08-28 16:18 犬の技術 阅读(30) 评论(0) 推荐(0)
摘要: 插件:Chinese (Simplified) (简体中文) Code Spell Checker DotENV Doxygen Documentation Generator EditorConfig for VS Code ESLint Git History git-commit-lint-v 阅读全文
posted @ 2023-08-04 19:00 犬の技術 阅读(39) 评论(0) 推荐(0)
摘要: 今天接手一个老项目,跑不起来,到stackflow查询报错有大神建议降低node版本。我当前是18.14.0 1、安装n模块 sudo npm install -g n 2、安装指定版本的node,随便到node官网找了一个版本号 sudo n 16.18.1 3、查看已安装的版本 sudo n ( 阅读全文
posted @ 2023-02-06 21:58 犬の技術 阅读(583) 评论(0) 推荐(0)
摘要: 原理: vw 即(view-port width)视口宽度,1vw 表示视口宽度的 1%,100vw 则表示整个视口的宽度。 rem 即(font size of the root element)根标签的字体大小,例如设置 html{ font-size : 15px ; } 那么我们在写样式时 阅读全文
posted @ 2023-02-05 18:32 犬の技術 阅读(281) 评论(0) 推荐(0)