36 lines
No EOL
483 B
HTML
36 lines
No EOL
483 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
|
|
<head>
|
|
</head>
|
|
|
|
<body>
|
|
<style>
|
|
:root {
|
|
margin: 0px;
|
|
scroll-start: 100px;
|
|
}
|
|
|
|
#spacer {
|
|
height: 100vh;
|
|
width: 100vw;
|
|
}
|
|
|
|
#box {
|
|
width: 100px;
|
|
height: 100px;
|
|
background-color: blue;
|
|
}
|
|
|
|
#fragment_target {
|
|
width: 100px;
|
|
height: 100px;
|
|
background-color: red;
|
|
}
|
|
</style>
|
|
<div id="spacer"></div>
|
|
<div id="box"></div>
|
|
<div id="fragment_target"></div>
|
|
</body>
|
|
|
|
</html> |