mirror of
https://github.com/servo/servo.git
synced 2025-07-13 18:33:40 +01:00
16 lines
244 B
HTML
16 lines
244 B
HTML
<!DOCTYPE html>
|
|
<style>
|
|
body, html {
|
|
height: 100%;
|
|
width: 100%;
|
|
}
|
|
#spacer {
|
|
width: 1500px;
|
|
height: 1500px;
|
|
background-color: red;
|
|
}
|
|
</style>
|
|
<body>
|
|
<p>This page is scrollable.</p>
|
|
<div id="spacer"></div>
|
|
</body>
|