mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-05 15:28:39 +09:00
18 lines
282 B
HTML
18 lines
282 B
HTML
|
|
<!DOCTYPE html>
|
||
|
|
<html>
|
||
|
|
<head>
|
||
|
|
<style type="text/css">
|
||
|
|
#separator, #spacer, #first-child {
|
||
|
|
height: 20px;
|
||
|
|
}
|
||
|
|
#separator, #first-child {
|
||
|
|
background-color: green;
|
||
|
|
}
|
||
|
|
</style>
|
||
|
|
</head>
|
||
|
|
<body>
|
||
|
|
<div id="separator"></div>
|
||
|
|
<div id="spacer"></div>
|
||
|
|
<div id="first-child"></div>
|
||
|
|
</body>
|
||
|
|
</html>
|