diff options
author | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:40:17 -0500 |
---|---|---|
committer | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:40:17 -0500 |
commit | 33058f2b292b3a581333bdfb21b8f671898c5060 (patch) | |
tree | 51c3e392513ec574331b2d3f85c394445ea803c6 /files/zh-cn/web/css/-moz-outline-radius-topright | |
parent | 8b66d724f7caf0157093fb09cfec8fbd0c6ad50a (diff) | |
download | translated-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-topright')
-rw-r--r-- | files/zh-cn/web/css/-moz-outline-radius-topright/index.html | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/files/zh-cn/web/css/-moz-outline-radius-topright/index.html b/files/zh-cn/web/css/-moz-outline-radius-topright/index.html new file mode 100644 index 0000000000..73996c0855 --- /dev/null +++ b/files/zh-cn/web/css/-moz-outline-radius-topright/index.html @@ -0,0 +1,35 @@ +--- +title: '-moz-outline-radius-topright' +slug: Web/CSS/-moz-outline-radius-topright +translation_of: Web/CSS/-moz-outline-radius-topright +--- +<div>{{Non-standard_header}}{{CSSRef}}</div> + +<p>在Mozilla应用中, <strong><code>-moz-outline-radius-topright</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"><p>看这段话的右上角。</p></pre> + +<h3 id="CSS">CSS</h3> + +<pre class="brush: css">p { + margin: 5px; + border: solid cyan; + outline: dotted red; + -moz-outline-radius-topright: 2em; +}</pre> + +<h3 id="结果">结果</h3> + +<p>{{EmbedLiveSample("Example")}}</p> + +<h2 id="参见">参见</h2> + +<ul> + <li>更多信息参见 <a href="/zh-CN/docs/Web/CSS/-moz-outline-radius" title="在包括Firefox在内的Mozilla的应用里, -moz-outline-radius CSS 属性可以用作给一个元素 outline 圆角。"><code>-moz-outline-radius</code></a> 属性。</li> +</ul> |