зеркало из https://github.com/mozilla/gecko-dev.git
24 строки
314 B
HTML
24 строки
314 B
HTML
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<style type="text/css">
|
||
|
html, body {
|
||
|
background-color: white;
|
||
|
margin: 0; padding: 0;
|
||
|
}
|
||
|
#the-html {
|
||
|
padding: 30px 0;
|
||
|
}
|
||
|
#the-body {
|
||
|
background-color: green;
|
||
|
height: 100px;
|
||
|
}
|
||
|
</style>
|
||
|
</head>
|
||
|
<body>
|
||
|
<div id="the-html">
|
||
|
<div id="the-body"></div>
|
||
|
</div>
|
||
|
</body>
|
||
|
</html>
|