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>
|