aboutsummaryrefslogtreecommitdiff
path: root/files/zh-cn/web/css/-moz-outline-radius-bottomleft/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'files/zh-cn/web/css/-moz-outline-radius-bottomleft/index.html')
-rw-r--r--files/zh-cn/web/css/-moz-outline-radius-bottomleft/index.html35
1 files changed, 35 insertions, 0 deletions
diff --git a/files/zh-cn/web/css/-moz-outline-radius-bottomleft/index.html b/files/zh-cn/web/css/-moz-outline-radius-bottomleft/index.html
new file mode 100644
index 0000000000..b835080bb6
--- /dev/null
+++ b/files/zh-cn/web/css/-moz-outline-radius-bottomleft/index.html
@@ -0,0 +1,35 @@
+---
+title: '-moz-outline-radius-bottomleft'
+slug: Web/CSS/-moz-outline-radius-bottomleft
+translation_of: Web/CSS/-moz-outline-radius-bottomleft
+---
+<div>{{Non-standard_header}}{{CSSRef}}</div>
+
+<p>在Mozilla应用中, <strong><code>-moz-outline-radius-bottomleft</code></strong> <a href="/zh-CN/docs/Web/CSS">CSS</a> 属性用于设置元素的左下角 {{cssxref("outline")}} 圆角。</p>
+
+<p>{{cssinfo}}</p>
+
+<h2 id="示例">示例</h2>
+
+<h3 id="HTML">HTML</h3>
+
+<pre class="brush: html">&lt;p&gt;看这段话的左下角。&lt;/p&gt;</pre>
+
+<h3 id="CSS">CSS</h3>
+
+<pre class="brush: css">p {
+ margin: 10px;
+ border: solid cyan;
+ outline: dotted green;
+ -moz-outline-radius-bottomleft: 2em;
+}</pre>
+
+<h3 id="结果">结果</h3>
+
+<p>{{EmbedLiveSample("Example")}}</p>
+
+<h2 id="参见">参见</h2>
+
+<ul>
+ <li>更多信息参见 {{cssxref("-moz-outline-radius")}} 属性。</li>
+</ul>