blob: b5982866f1fa5ce8e5215cd32546f8a59d8f8b52 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<!DOCTYPE html>
<meta charset="utf-8">
<title>CSS Reference</title>
<link rel="author" title="Intel" href="http://www.intel.com">
<style>
div {
font: 1in serif;
}
span {
font-variant: small-caps;
font-size: 1in;
font-family: serif;
line-height: 1em;
}
</style>
<body>
<p>Test passes if letters "E" below are larger than this text, are capitalized, and if the left "E" is smaller than the right "E".</p>
<div><span>e</span>E</div>
</body>
|