13 lines
284 B
HTML
13 lines
284 B
HTML
<!DOCTYPE html>
|
|
<meta charset="utf-8">
|
|
<title>CSS Reference</title>
|
|
<style>
|
|
div {
|
|
height: 100px;
|
|
width: 200px;
|
|
}
|
|
</style>
|
|
<body>
|
|
<p>Test passes if there are exactly two lines of text below.</p>
|
|
<div>This text<br />should be on two lines.</div>
|
|
</body>
|