368d6fafea
Code backup
19 lines
566 B
HTML
19 lines
566 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title> Vertical Division<title>
|
|
</head>
|
|
<body>
|
|
<div style="background-color: blue; width: 100%; height: 650px;">
|
|
|
|
<div style="background-color: red; width: 50%; height: 550px; float:left;">
|
|
This is the first division to have a vertical alignment.
|
|
</div>
|
|
|
|
<div style="background-color: yellow; width:50%; height: 550px; float:left;">
|
|
This is the second division to have a vertical alignment.
|
|
</div>
|
|
</div>
|
|
|
|
</body>
|
|
</html> |