12 lines
249 B
HTML
12 lines
249 B
HTML
<!DOCTYPE html>
|
|
<meta charset="utf-8">
|
|
<title>CSS Reference</title>
|
|
<style>
|
|
div {
|
|
border: 2px solid black;
|
|
}
|
|
</style>
|
|
<body>
|
|
<p>Test passes if there are letters "i" and "i.i" in the box below.</p>
|
|
<div>i<br>i.i</div>
|
|
</body>
|