mirror of
https://github.com/servo/servo.git
synced 2025-06-06 16:45:39 +00:00
CSS-TEXT-3 § 7.3. `text-justify: distribute` is not supported. The behavior of `text-justify: none` does not seem to match what Firefox and Chrome do, but it seems to match the spec. Closes #213.
15 lines
221 B
HTML
15 lines
221 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<style>
|
|
section {
|
|
border: solid black 1px;
|
|
width: 10em;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<section>xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx<br>asdf asdf asdf</section>
|
|
</body>
|
|
</html>
|
|
|