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