From b160a15682e1a1b0092e972e7b44bce307c4d660 Mon Sep 17 00:00:00 2001 From: Timothy Flynn Date: Mon, 17 May 2021 16:07:24 -0400 Subject: [PATCH] Base: Add boxes with multi-part border attributes to borders.html --- Base/res/html/misc/borders.html | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/Base/res/html/misc/borders.html b/Base/res/html/misc/borders.html index d84befbe11..fe0613b723 100644 --- a/Base/res/html/misc/borders.html +++ b/Base/res/html/misc/borders.html @@ -121,6 +121,24 @@ div + div { border-right-width: 10px; border-right-style: inset; } +#two-part-border-attributes { + height: 50px; + border-color: red lime; + border-width: 8px 6px; + border-style: solid dashed; +} +#three-part-border-attributes { + height: 50px; + border-color: red lime blue; + border-width: 8px 6px 4px; + border-style: solid dashed dotted; +} +#four-part-border-attributes { + height: 50px; + border-color: red lime blue orange; + border-width: 8px 6px 4px 2px; + border-style: solid dashed dotted dotted; +} @@ -146,5 +164,8 @@ div + div {
dashed (5px)
dashed (20px)
mixed
+
two-part border attributes
+
three-part border attributes
+
four-part border attributes