|
| 1 | +<!DOCTYPE html> |
| 2 | +<html> |
| 3 | +<head> |
| 4 | + <title>Title with <br><br><br>3 br</title> |
| 5 | + <style> |
| 6 | + div { |
| 7 | + background-color: grey; |
| 8 | + } |
| 9 | + br { |
| 10 | + background-color: yellow; |
| 11 | + } |
| 12 | + th { |
| 13 | + background-color: green; |
| 14 | + } |
| 15 | + tr { |
| 16 | + background-color: magenta; |
| 17 | + } |
| 18 | + table { |
| 19 | + background-color: orange; |
| 20 | + } |
| 21 | + li { |
| 22 | + background-color: rgba(0, 255, 0, 0.3); |
| 23 | + } |
| 24 | + span { |
| 25 | + background-color: magenta; |
| 26 | + } |
| 27 | + p { |
| 28 | + background-color: rgba(255, 255, 0, 0.3); |
| 29 | + } |
| 30 | + </style> |
| 31 | +</head> |
| 32 | +<body> |
| 33 | + |
| 34 | +<table> |
| 35 | + <tr> |
| 36 | + <td> |
| 37 | + <ol> |
| 38 | + <li>0 Line breaks: Test</li> |
| 39 | + <li>1 Line break:<br>Test</li> |
| 40 | + <li>2 Line breaks:<br><br>Test</li> |
| 41 | + <li>3 Line breaks:<br><br><br>Test</li> |
| 42 | + <li><b>3 Line breaks:<br><br><br>Test</b></li> |
| 43 | + </ol> |
| 44 | + </td> |
| 45 | + <td> |
| 46 | + <ul> |
| 47 | + <li>0 Line breaks: Test</li> |
| 48 | + <li>1 Line break:<br>Test</li> |
| 49 | + <li>2 Line breaks:<br><br>Test</li> |
| 50 | + <li>3 Line breaks:<br><br><br>Test</li> |
| 51 | + <li><b>3 Line breaks:<br><br><br>Test</b></li> |
| 52 | + </ul> |
| 53 | + </td> |
| 54 | + <td> |
| 55 | + <dl> |
| 56 | + <dt>0 Line breaks: Test</dt> |
| 57 | + <dd>0 Line breaks: Test</dd> |
| 58 | + <dt>1 Line break:<br>Test</dt> |
| 59 | + <dd>1 Line break:<br>Test</dd> |
| 60 | + <dt>2 Line breaks:<br><br>Test</dt> |
| 61 | + <dd>2 Line breaks:<br><br>Test</dd> |
| 62 | + <dt>3 Line break:<br><br><br>Test</dt> |
| 63 | + <dd><strike>3 Line break:<br><br><br>Test</strike></dd> |
| 64 | + </dl> |
| 65 | + </td> |
| 66 | + </tr> |
| 67 | +</table> |
| 68 | +<ul> |
| 69 | + <li>Here |
| 70 | + <bdi>Three line breaks<br><br><br>inside BDI</bdi> |
| 71 | + test inside LI |
| 72 | + </li> |
| 73 | + <li>Here <bdo dir="rtl">Three line breaks<br><br><br>inside BDO</bdo> test inside LI</li> |
| 74 | + <li>Here <bdo dir="ltr">Three line breaks<br><br><br>inside BDO</bdo> test inside LI</li> |
| 75 | +</ul> |
| 76 | +Here |
| 77 | +<bdi>Three line breaks<br><br><br>inside BDI</bdi> |
| 78 | +test |
| 79 | +Here <bdo dir="rtl">Three line breaks<br><br><br>inside BDO RTL</bdo> test |
| 80 | +Here <bdo dir="ltr">Three line breaks<br><br><br>inside BDO LTR</bdo> test |
| 81 | +<span>Three line breaks<br><br><br>inside SPAN</span> |
| 82 | +<p>Three line breaks<br><br><br>inside P</p> |
| 83 | +<div>Line breaks in ABBR</div> |
| 84 | +<abbr title="Some Abbrev Here">SA<br><br><br>H</abbr> |
| 85 | +<div>Line breaks in a tag</div> |
| 86 | +<table> |
| 87 | + <tr> |
| 88 | + <td> |
| 89 | + Here <a style="display: block;">Three line breaks<br><br><br>inside A</a> |
| 90 | + </td> |
| 91 | + <td> |
| 92 | + Here <a style="display: inline;">Three line breaks<br><br><br>inside A</a> |
| 93 | + </td> |
| 94 | + </tr> |
| 95 | + |
| 96 | +</table> |
| 97 | +<div>Three line breaks<br><br><br>inside DIV</div> |
| 98 | +<h1>Three line breaks<br><br><br>inside H1</h1> |
| 99 | +<link> |
| 100 | +Three line breaks<br><br><br>inside LINK</link> |
| 101 | +<pre>Three line breaks<br><br><br>inside PRE</pre> |
| 102 | +<table> |
| 103 | + <tr> |
| 104 | + <td><p>Three line breaks<br><br><br>inside P</p></td> |
| 105 | + <td><b>Three line breaks<br><br><br>inside B</b></td> |
| 106 | + <td><p><b>Three line breaks<br><br><br>inside B inside P</b></p></td> |
| 107 | + <td> |
| 108 | + <div><b>Three line breaks<br><br><br>inside B inside DIV</b></div> |
| 109 | + </td> |
| 110 | + </tr> |
| 111 | + <tr> |
| 112 | + <td><big>Three line breaks<br><br><br>inside BIG</big></td> |
| 113 | + <td> |
| 114 | + <small>Three line breaks<br><br><br>inside SMALL</small> |
| 115 | + </td> |
| 116 | + <td><p><i>Three line breaks<br><br><br>inside I inside P</i></p></td> |
| 117 | + <td> |
| 118 | + <div> |
| 119 | + <small>Three line breaks<br><br><br>inside SMALL inside DIV</small> |
| 120 | + </div> |
| 121 | + </td> |
| 122 | + </tr> |
| 123 | + <tr> |
| 124 | + <td><span><big>Three line breaks<br><br><br>inside BIG inside SPAN</big></span></td> |
| 125 | + <td><span>Three line breaks<br><br><br>inside SPAN inside TD</span></td> |
| 126 | + <td><p><strong>Three line breaks<br><br><br>inside STRONG inside P</strong></p></td> |
| 127 | + <td> |
| 128 | + <div><strong>Three line breaks<br><br><br>inside STRONG inside DIV</strong></div> |
| 129 | + </td> |
| 130 | + </tr> |
| 131 | + <tr> |
| 132 | + <td><span><code>Three line breaks<br><br><br>inside CODE inside SPAN</code></span></td> |
| 133 | + <td><code>Three line breaks<br><br><br>inside CODE</code></td> |
| 134 | + <td><cite>Three line breaks<br><br><br>inside CITE</cite></td> |
| 135 | + <td><div><dfn>Three line breaks<br><br><br>inside DFN inside DIV</dfn></div></td> |
| 136 | + </tr> |
| 137 | +</table> |
| 138 | + |
| 139 | +<img src="planets.gif" width="145" height="126" alt="Planets" usemap="#planetmap"> |
| 140 | + |
| 141 | +<map name="planetmap"><br><br><br> |
| 142 | + <area shape="rect" coords="0,0,82,126" href="sun.htm" alt="Sun"> |
| 143 | + <area shape="circle" coords="90,58,3" href="mercur.htm" alt="Mercury"> |
| 144 | + <area shape="circle" coords="124,58,8" href="venus.htm" alt="Venus"> |
| 145 | +</map> |
| 146 | +<select> |
| 147 | + <br><br><br> |
| 148 | + <option>THREE LINE BREAKS<br><br><br>inside OPTION</option> |
| 149 | + <br><br><br> |
| 150 | + <option selected>Three line breaks<br><br><br>inside OPTION</option> |
| 151 | +</select> |
| 152 | +<table> |
| 153 | + <tr> |
| 154 | + <th scope="col">Three line breaks<br><br><br>inside TH</th> |
| 155 | + Three line breaks<br><br><br>inside TABLE NO STRUCTURE |
| 156 | + <th scope="col">Three line breaks<br><br><br>inside TH</th> |
| 157 | + </tr> |
| 158 | + Three line breaks<br><br><br>inside |
| 159 | + <tr> |
| 160 | + <td>Three line breaks<br><br><br>inside TD</td> |
| 161 | + Three line breaks<br><br><br>inside TABLE NO STRUCTURE |
| 162 | + <td>Three line breaks<br><br><br>inside TD</td> |
| 163 | + </tr> |
| 164 | +</table> |
| 165 | +<br><br> |
| 166 | +<table> |
| 167 | + <thead> |
| 168 | + <td>Three line breaks<br><br><br>inside TD inside THEAD</td> |
| 169 | + Three line breaks<br><br><br>inside THEAD NO STRUCTURE |
| 170 | + <td>Three line breaks<br><br><br>inside TD inside THEAD</td> |
| 171 | + </thead> |
| 172 | + Three line breaks<br><br><br>inside TABLE NO STRUCTURE |
| 173 | + <tr> |
| 174 | + <td>Three line breaks<br><br><br>inside</td> |
| 175 | + Three line breaks<br><br><br>inside NO STRUCTURE |
| 176 | + <td>Three line breaks<br><br><br>inside</td> |
| 177 | + </tr> |
| 178 | + <tfoot> |
| 179 | + <td>Three line breaks<br><br><br>inside TD inside TFOOT</td> |
| 180 | + Three line breaks<br><br><br>inside TFOOT NO STRUCTURE |
| 181 | + <td>Three line breaks<br><br><br> inside TD inside TFOOT</td> |
| 182 | + </tfoot> |
| 183 | +</table> |
| 184 | +<br> |
| 185 | +<button>Three line breaks<br><br><br>inside BUTTON</button> |
| 186 | +<br> |
| 187 | +<textarea>Three line breaks<br><br><br>inside TEXTAREA</textarea> |
| 188 | +<br> |
| 189 | +<input placeholder="Three line breaks <br><br><br>inside PLACEHOLDER"> |
| 190 | +<br> |
| 191 | +<samp>Three line breaks<br><br><br>inside SAMP</samp> |
| 192 | +<br> |
| 193 | +Here |
| 194 | +<del>Three line breaks<br><br><br>inside DEL</del> |
| 195 | +<ins>Three line breaks<br><br><br>inside INS</ins> |
| 196 | +! |
| 197 | +</body> |
| 198 | +</html> |
0 commit comments