mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07: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>
|