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