aboutsummaryrefslogtreecommitdiff
path: root/files/zh-cn/web/css/-moz-outline-radius-bottomright
diff options
context:
space:
mode:
authorPeter Bengtsson <mail@peterbe.com>2020-12-08 14:40:17 -0500
committerPeter Bengtsson <mail@peterbe.com>2020-12-08 14:40:17 -0500
commit33058f2b292b3a581333bdfb21b8f671898c5060 (patch)
tree51c3e392513ec574331b2d3f85c394445ea803c6 /files/zh-cn/web/css/-moz-outline-radius-bottomright
parent8b66d724f7caf0157093fb09cfec8fbd0c6ad50a (diff)
downloadtranslated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.gz
translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.bz2
translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.zip
initial commit
Diffstat (limited to 'files/zh-cn/web/css/-moz-outline-radius-bottomright')
-rw-r--r--files/zh-cn/web/css/-moz-outline-radius-bottomright/index.html35
1 files changed, 35 insertions, 0 deletions
diff --git a/files/zh-cn/web/css/-moz-outline-radius-bottomright/index.html b/files/zh-cn/web/css/-moz-outline-radius-bottomright/index.html
new file mode 100644
index 0000000000..68e645cfa7
--- /dev/null
+++ b/files/zh-cn/web/css/-moz-outline-radius-bottomright/index.html
@@ -0,0 +1,35 @@
+---
+title: '-moz-outline-radius-bottomright'
+slug: Web/CSS/-moz-outline-radius-bottomright
+translation_of: Web/CSS/-moz-outline-radius-bottomright
+---
+<div>{{Non-standard_header}}{{CSSRef}}</div>
+
+<p>在Mozilla应用中,<strong><code>-moz-outline-radius-bottomright</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: 5px;
+ border: solid cyan;
+ outline: dotted red;
+ -moz-outline-radius-bottomright: 2em;
+}</pre>
+
+<h3 id="结果">结果</h3>
+
+<p>{{EmbedLiveSample("Example")}}</p>
+
+<h2 id="参见">参见</h2>
+
+<ul>
+ <li>更多信息参见 <a href="https://developer.mozilla.org/zh-CN/docs/Web/CSS/-moz-outline-radius" title="在包括Firefox在内的Mozilla的应用里, -moz-outline-radius CSS 属性可以用作给一个元素 outline 圆角。"><code>-moz-outline-radius</code></a> 属性。</li>
+</ul>