mirror of
https://github.com/SerenityOS/serenity.git
synced 2025-01-24 18:32:28 -05:00
Base: Add boxes with multi-part border attributes to borders.html
This commit is contained in:
parent
bfcc53a879
commit
b160a15682
1 changed files with 21 additions and 0 deletions
|
@ -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>
|
||||
|
|
Loading…
Add table
Reference in a new issue