File: br.html

package info (click to toggle)
liblayout 0.2.10-5
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 5,332 kB
  • sloc: java: 51,125; xml: 138; makefile: 17
file content (27 lines) | stat: -rw-r--r-- 445 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<html>
<head>
  <style type="text/css">
    br {
      border: 1pt solid black;
      background-color: green;

    }

  </style>
</head>

<body>
<h1>
  Testing whether styles can be applied to a BR tag
</h1>
<p>
  Some text one the first line<br/> And some more on the next line.
</p>

<h1>
  Testing how elements affect the linebreaking of large words.
</h1>

<p>A verylong<i>reallyincrediblylong</i>wordwithnobreaksinside</p>
</body>
</html>