2007-02-28 22:32:00 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
2010-01-27 23:46:48 +00:00
|
|
|
<title>CSS 2.1 Test Suite: :first-letter</title>
|
2011-01-12 01:09:21 +00:00
|
|
|
<link rel="author" title="Boris Zbarsky" href="mailto:bzbarsky@mit.edu" />
|
2010-01-27 23:46:48 +00:00
|
|
|
<link rel="author" title="Mozilla Corporation" href="http://mozilla.com/" />
|
|
|
|
<link rel="help" href="http://www.w3.org/TR/CSS21/selector.html#first-letter"/>
|
|
|
|
<meta name="flags" content="" />
|
2007-02-28 22:32:00 +00:00
|
|
|
<style>
|
|
|
|
div { color: black; }
|
|
|
|
div::first-letter { color: green; }
|
|
|
|
span:before { content: open-quote "This "; }
|
|
|
|
span:after { content: close-quote; }
|
|
|
|
span { quotes: '"' '"'; }
|
|
|
|
</style>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div><span>is text</span></div>
|
|
|
|
</body>
|
|
|
|
</html>
|