summaryrefslogtreecommitdiff
path: root/Base/res
diff options
context:
space:
mode:
authorTimothy Flynn <trflynn89@pm.me>2021-05-17 16:07:24 -0400
committerAndreas Kling <kling@serenityos.org>2021-05-17 23:24:32 +0200
commitb160a15682e1a1b0092e972e7b44bce307c4d660 (patch)
tree9c80f7d9ced6fb7a7b82c7550d2d06b2cf4e181a /Base/res
parentbfcc53a879cfbee7a4eef8f132f2ec8d2cb537a6 (diff)
downloadserenity-b160a15682e1a1b0092e972e7b44bce307c4d660.zip
Base: Add boxes with multi-part border attributes to borders.html
Diffstat (limited to 'Base/res')
-rw-r--r--Base/res/html/misc/borders.html21
1 files changed, 21 insertions, 0 deletions
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;
+}
</style>
</head>
<body>
@@ -146,5 +164,8 @@ div + div {
<div id="dashed-5px">dashed (5px)</div>
<div id="dashed-20px">dashed (20px)</div>
<div id="mixed">mixed</div>
+<div id="two-part-border-attributes">two-part border attributes</div>
+<div id="three-part-border-attributes">three-part border attributes</div>
+<div id="four-part-border-attributes">four-part border attributes</div>
</body>
</html>