aboutsummaryrefslogtreecommitdiff
path: root/files/zh-cn/web/css/-moz-outline-radius-topleft
diff options
context:
space:
mode:
Diffstat (limited to 'files/zh-cn/web/css/-moz-outline-radius-topleft')
-rw-r--r--files/zh-cn/web/css/-moz-outline-radius-topleft/index.html35
1 files changed, 35 insertions, 0 deletions
diff --git a/files/zh-cn/web/css/-moz-outline-radius-topleft/index.html b/files/zh-cn/web/css/-moz-outline-radius-topleft/index.html
new file mode 100644
index 0000000000..9a8212a945
--- /dev/null
+++ b/files/zh-cn/web/css/-moz-outline-radius-topleft/index.html
@@ -0,0 +1,35 @@
+---
+title: '-moz-outline-radius-topleft'
+slug: Web/CSS/-moz-outline-radius-topleft
+translation_of: Web/CSS/-moz-outline-radius-topleft
+---
+<div>{{Non-standard_header}}{{CSSRef}}</div>
+
+<p>在Mozilla应用中, <strong><code>-moz-outline-radius-topleft</code></strong> <a href="/en-US/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-topleft: 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>