mirror of
https://github.com/cypress-io/cypress.git
synced 2026-03-14 21:30:37 -05:00
Co-authored-by: Brian Mann <brian.mann86@gmail.com> Co-authored-by: Zach Bloomquist <git@chary.us> Co-authored-by: Zach Bloomquist <github@chary.us>
37 lines
553 B
HTML
37 lines
553 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title></title>
|
|
</head>
|
|
<body>
|
|
<style>
|
|
#box {
|
|
width: 200px;
|
|
margin: 10px;
|
|
border: 1px solid black;
|
|
background-color: #eee;
|
|
}
|
|
|
|
#top {
|
|
height: 333px;
|
|
background-color: red;
|
|
}
|
|
|
|
#middle {
|
|
height: 333px;
|
|
background-color: green;
|
|
}
|
|
|
|
#bottom {
|
|
height: 334px;
|
|
background-color: blue;
|
|
}
|
|
</style>
|
|
<div id="box">
|
|
<div id="top">top</div>
|
|
<div id="middle">middle</div>
|
|
<div id="bottom">bottom</div>
|
|
</div>
|
|
</body>
|
|
</html>
|