mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-26 09:45:06 +02:00
29 lines
454 B
HTML
29 lines
454 B
HTML
<!DOCTYPE html>
|
|
<style>
|
|
* { border: 1px solid black; }
|
|
div {
|
|
position: absolute;
|
|
width: 10px;
|
|
height: 10px;
|
|
}
|
|
.only-t-l {
|
|
top: 5px;
|
|
left: 5px;
|
|
background-color: red;
|
|
}
|
|
.only-mt-ml {
|
|
margin: 5px;
|
|
background-color: orange;
|
|
}
|
|
.both {
|
|
top: 5px;
|
|
left: 5px;
|
|
margin: 5px;
|
|
background-color: green;
|
|
}
|
|
</style>
|
|
<body>
|
|
<div class="only-t-l"></div>
|
|
<div class="only-mt-ml"></div>
|
|
<div class="both"></div>
|