33 lines
941 B
HTML
33 lines
941 B
HTML
|
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
|
<head>
|
|
<title>Block Box</title>
|
|
<style type="text/css">
|
|
* .box {
|
|
display: block;
|
|
overflow: auto;
|
|
visibility: visible;
|
|
width: 400px;
|
|
height: 120px;
|
|
margin: 8px auto;
|
|
padding: 8px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
|
|
<div class="container">
|
|
<div class="default">Before</div>
|
|
<div class="box">Romantic love reaches out in little ways,<br>
|
|
showing attention and admiration.<br>
|
|
Romantic love remembers what pleases a woman,<br>
|
|
what excites her, and what surprises her.<br>
|
|
Its actions whisper:<br>
|
|
you are the most special person in my life.<br><br>
|
|
|
|
Charles Stanley (A Man's Touch)</div>
|
|
<div class="default">After</div>
|
|
</div>
|
|
</body>
|
|
</html> |