mirror of
https://github.com/servo/servo.git
synced 2025-06-23 08:34:42 +01:00
39 lines
No EOL
2 KiB
HTML
39 lines
No EOL
2 KiB
HTML
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
|
<html xmlns="http://www.w3.org/1999/xhtml"><head>
|
|
<meta charset="utf-8" />
|
|
<title>CSS Text: text-align: match-parent</title>
|
|
<link href="mailto:smontagu@mozilla.com" rel="author" title="Simon Montagu" />
|
|
<link href="http://www.w3.org/TR/css-text-3/#text-align-property" rel="help" />
|
|
<meta content="Text checks that an element with
|
|
text-align: match-parent inherits its parent's value and calculates
|
|
'start' and 'end' with respect to its parent's direction" U0003Clink="" href="text-align-match-parent-ref.html" name="assert" rel="match" />
|
|
<style type="text/css">
|
|
div.start { text-align: start; }
|
|
div.end { text-align: end; }
|
|
div.left { text-align: left; }
|
|
div.right { text-align: right; }
|
|
div > div { text-align: match-parent; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div>Test passes if each line that says "Left" is aligned left and
|
|
each line that says "Right" is aligned right</div>
|
|
<div class="start" dir="ltr"><div dir="ltr">Left</div></div>
|
|
<div class="start" dir="ltr"><div dir="rtl">Left</div></div>
|
|
<div class="start" dir="rtl"><div dir="ltr">Right</div></div>
|
|
<div class="start" dir="rtl"><div dir="rtl">Right</div></div>
|
|
<div class="end" dir="ltr"><div dir="ltr">Right</div></div>
|
|
<div class="end" dir="ltr"><div dir="rtl">Right</div></div>
|
|
<div class="end" dir="rtl"><div dir="ltr">Left</div></div>
|
|
<div class="end" dir="rtl"><div dir="rtl">Left</div></div>
|
|
<div class="left" dir="ltr"><div dir="ltr">Left</div></div>
|
|
<div class="left" dir="ltr"><div dir="rtl">Left</div></div>
|
|
<div class="left" dir="rtl"><div dir="ltr">Left</div></div>
|
|
<div class="left" dir="rtl"><div dir="rtl">Left</div></div>
|
|
<div class="right" dir="ltr"><div dir="ltr">Right</div></div>
|
|
<div class="right" dir="ltr"><div dir="rtl">Right</div></div>
|
|
<div class="right" dir="rtl"><div dir="ltr">Right</div></div>
|
|
<div class="right" dir="rtl"><div dir="rtl">Right</div></div>
|
|
|
|
|
|
</body></html> |