mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 14:45:29 +00:00
19 lines
486 B
HTML
19 lines
486 B
HTML
<!DOCTYPE html>
|
|
<head>
|
|
<title>CSS 2.1 Test Suite: text-indent test</title>
|
|
<link rel="author" title="L. David Baron" href="http://dbaron.org/" />
|
|
<link rel="author" title="Mozilla Corporation" href="http://mozilla.com/" />
|
|
<link rel="help" href="http://www.w3.org/TR/CSS21/text.html#indentation-prop" />
|
|
<meta name="flags" content="" />
|
|
<style type="text/css">
|
|
div { width: 500px; }
|
|
p { width: 300px; text-indent: 10%; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div>
|
|
<p>text</p>
|
|
</div>
|
|
</body>
|
|
</html>
|