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 @@
检查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
的值作为内容展示
如果 <a>
标签里面没有内容,将 href
的值作为内容展示
响应式布局中的字体大小应该能够根据每个视口进行调整,您可以使用 :root
根据视口高度和宽度计算字体大小
:root {
font-size: calc(1vw + 1vh + .5vmin);
}
-现在您可以根据 :root
计算的值使用根 em
单位:
您可以根据 :root
计算的值使用根 em
单位:
body {
font: 1rem/1.6 sans-serif;
}
+div {
+ -webkit-user-modify:
+ read-write-plaintext-only;
+}
+
+
+通过样式来控制一个元素 div
是否可以编辑