mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-07 20:17:37 +00:00
15 lines
205 B
HTML
15 lines
205 B
HTML
<!DOCTYPE html>
|
|
<head>
|
|
<title>text-indent test</title>
|
|
<style type="text/css">
|
|
div { width: 500px; }
|
|
p { width: 300px; text-indent: 50px; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div>
|
|
<p>text</p>
|
|
</div>
|
|
</body>
|
|
</html>
|