From 33058f2b292b3a581333bdfb21b8f671898c5060 Mon Sep 17 00:00:00 2001 From: Peter Bengtsson Date: Tue, 8 Dec 2020 14:40:17 -0500 Subject: initial commit --- .../web/css/-moz-outline-radius-topleft/index.html | 35 ++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 files/zh-cn/web/css/-moz-outline-radius-topleft/index.html (limited to 'files/zh-cn/web/css/-moz-outline-radius-topleft/index.html') 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 +--- +
{{Non-standard_header}}{{CSSRef}}
+ +

在Mozilla应用中, -moz-outline-radius-topleft CSS 属性用于设置元素的左上角{{cssxref("outline")}} 圆角。

+ +

{{cssinfo}}

+ +

示例

+ +

HTML

+ +
<p>看这段话的左上角。</p>
+ +

CSS

+ +
p {
+  margin: 5px;
+  border: solid cyan;
+  outline: dotted red;
+  -moz-outline-radius-topleft: 2em;
+}
+ +

结果

+ +

{{EmbedLiveSample("Example")}}

+ +

参见

+ + -- cgit v1.2.3-54-g00ecf