File: generated-content.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 (53 lines) | stat: -rw-r--r-- 823 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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<html>
<head>
  <style type="text/css">
    h1 { border: 1pt solid black; }
  
    h1:before {
      content: "<b>test</b>";
    }

	b {
		background-color: green;
	}

    b:before {
      content: "<h1>test2</h1>";
    }

    p {
      content: "Test";
    }

    img:before {
      content: "Generated";
    }

    div.testclass {
      border: 1pt solid green;
      background-color: yellow;
      padding: 3pt;
    }

    div.testclass:before {
      border: 1pt solid blue;
      background-color: red;
      content: "Before";
    }
    div.testclass:after {
      border: 1pt solid blue;
      background-color: red;
      content: "After";
    }
  </style>
</head>
<body>
<h1>What <b>do</b> you want?</h1>
<img src="denker.gif" alt="Denker"/>
<p>Blah</p>

<div class="testclass">
  Some text
</div>
</body>
</html>