1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 16:18:12 +00:00

LibHTML: Implement the <hr> element

This also meant I had to implement basic support for the border-styles
"inset" and "outset". If it's neither of those, we default to "solid".
This commit is contained in:
Andreas Kling 2019-10-01 20:50:11 +02:00
parent 53fae2af4f
commit 8f842375a2
6 changed files with 54 additions and 4 deletions

View file

@ -89,3 +89,9 @@ a {
color: #0000ff;
text-decoration: underline;
}
hr {
border-width: 1;
border-color: #888888;
border-style: inset;
}