diff --git a/docs/ansible.html b/docs/ansible.html index 9f6d3c83..7f749752 100644 --- a/docs/ansible.html +++ b/docs/ansible.html @@ -104,7 +104,7 @@

命令行(ad-hoc)

ansible

检查Inventory是否生效

-
ansible all --list-hosts
+
$ ansible all --list-hosts
 

ping所有目标

$ ansible all -m ping
diff --git a/docs/css.html b/docs/css.html
index 2c1f0584..d19b6521 100644
--- a/docs/css.html
+++ b/docs/css.html
@@ -42,7 +42,7 @@
 

这是一份关于 CSS 优点的快速参考备忘单,列出了选择器语法、属性、单位和其他有用的信息

入门

+

入门

介绍

CSS 功能丰富,不仅仅是布局页面

@@ -1374,18 +1374,27 @@ content: attr(href); }
-

如果你的 <a> 标签里面没有内容,将 href 的值作为内容展示

-

使用 :root 表示灵活类型

+

如果 <a> 标签里面没有内容,将 href 的值作为内容展示

+

使用 :root 表示灵活类型

+

响应式布局中的字体大小应该能够根据每个视口进行调整,您可以使用 :root 根据视口高度和宽度计算字体大小

:root {
   font-size: calc(1vw + 1vh + .5vmin);
 }
 
-

现在您可以根据 :root 计算的值使用根 em 单位:

+

您可以根据 :root 计算的值使用根 em 单位:

body {
   font: 1rem/1.6 sans-serif;
 }
 
+

类似 contenteditable 的样式

+
div {
+  -webkit-user-modify: 
+    read-write-plaintext-only;
+}
+
+ +

通过样式来控制一个元素 div 是否可以编辑

另见

  • CSS selectors cheatsheet (frontend30.com)
  • diff --git a/index.html b/index.html index 9459088d..5de56207 100644 --- a/index.html +++ b/index.html @@ -42,7 +42,10 @@

正在建设中...

坑已挖,需要您的参与完善和贡献!🙏

-

+

+ +Ansible + CMake