19 lines
257 B
HTML
19 lines
257 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<style>
|
|
div {
|
|
position: fixed;
|
|
width: 10px;
|
|
height: 10px;
|
|
background: blue;
|
|
left: 0;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div style="top:0"></div>
|
|
<div style="bottom:0"></div>
|
|
</body>
|
|
</html>
|
|
|