摘要:
在使用Flex或Grid布局时,经常会遇到内容溢出容器或者将容器撑大的情况 例如在grid布局中元素尺寸为1fr,或者flex布局中元素flex-grow:1时,想使用Echarts画图和布局中的文本省略显示时发现并没有达到预期的效果,容器被内容撑大了 想要解决这个问题,首先需要知道容器为什么会被撑 阅读全文
摘要:
参考资料:https://www.zhangxinxu.com/wordpress/2019/08/css-flex-last-align/ 参考资料:https://cloud.tencent.com/developer/article/1516801 阅读全文
摘要:
JS Math.sin() 与 Math.cos() 用法 Math.sin(x) x 的正玄值。返回值在 -1.0 到 1.0 之间; Math.cos(x) x 的余弦值。返回的是 -1.0 到 1.0 之间的数; 这两个函数中的X 都是指的“弧度”而非“角度”,弧度的计算公式为: 2PI/36 阅读全文
摘要:
单边框0.5px,可以用以下方式: 方式一:border + border-image + 线性渐变linear-gradient <div class="border">0.5像素边框</div> <style> .border { width: 200px; height: 200px; mar 阅读全文
摘要:
最近终端启动很慢,查阅相关资料后发现是,因为nvm在安装的时候,需要在 ~/.bashrc(如果你的终端用的是bash)或者~/.zshrc(如果你的终端用的是zsh) 中添加: export NVM_DIR="$HOME/.nvm" [ -s "$NVM_DIR/nvm.sh" ] && \. " 阅读全文
摘要:
一、通过homebrew查看是否有异常(首先你得安装了Homebrew) $ brew doctor 二、根据提示修改zsh配置 Warning: Homebrew's sbin was not found in your PATH but you have installed formulae t 阅读全文
摘要:
更新:建议使用nvm官方GitHub文档安装方式 参考文档:https://github.com/nvm-sh/nvm/blob/master/README.md#installing-and-updating 安装brew 终端上运行 $ /usr/bin/ruby -e “$(curl -fsS 阅读全文
摘要:
直接一句搞定: 阅读全文