从今天(2021.2.21)开始,学习 Java(就业路线),并记录学习的每日Memo.
[toc]
2021.2.22
🔴🟠🟡🟢🔵
Q : 如何能够在全匹配的同时,将即使在有内容的一行的man
也找出来
修改虚拟机(Linux)的Wriprin(Pitt)账户的密码
学习ubuntu sudo update
与upgrade
的作用及区别
学习Typora
修改 Typora
的主题
自定义主题💫
修改字体
new 主题文件夹/wriprin/noto.css => 💫
下面代码为引用内容,已将其引用到本地 => noto.css
<link href="https://fonts.googleapis.com/css2?family=Noto+Serif+SC:wght@400;900&display=swap" rel="stylesheet" media="print" onload="this.media='all'">
修改主题文件夹/wriprin.css
@import 'wriprin/noto.css';
body { font-family: 'Mulish', -apple-system, 'Noto Serif SC', "PingFang SC", "Microsoft Yahei UI", "Microsoft Yahei", sans-serif; /* font-family: "Vollkorn", Palatino, Times; */ /* font-family: 'Source Han SerifCN', Georgia, Times, 'SimSun', serif!important; */ color: var(--mid-13); -webkit-font-smoothing: antialiased; line-height: 1.8rem; letter-spacing: 0; margin: 0; overflow-x: hidden; }
Typora
简单样式修改方法 💫添加高亮Highlight快捷键
打开
conf.user.json
// Custom key binding, which will override the default ones. "keyBinding": { // for example: // "Always on Top": "Ctrl+Shift+P" "Highlight": "Ctrl+Shift+H" },
关于二进制计算
1011 1111
第二位是64 所以其后面的总和就为64-1=63
html里,如果让背景图片根据屏幕大小铺满屏幕,不重复?
方案一 :css3支持,background-size:cover
方案二 :
body{
margin:0;
background:url(images/bg.jpg) no-repeat;
background-size:100% 100%;
}