mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-26 09:45:06 +02:00
18 lines
382 B
HTML
18 lines
382 B
HTML
<!doctype html><style>
|
|
* { outline: 1px solid black; }
|
|
span {
|
|
padding-right: 1rem;
|
|
position: relative;
|
|
}
|
|
span:after {
|
|
content: "";
|
|
background-color: orange;
|
|
width: 8px;
|
|
height: 5px;
|
|
display: block;
|
|
position: absolute;
|
|
top: 45%;
|
|
right: 5%;
|
|
}
|
|
</style><body><span>Features</span>
|