mirror of
https://github.com/servo/servo.git
synced 2025-06-19 14:48:59 +01: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.
22 lines
307 B
HTML
22 lines
307 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<link rel="stylesheet" type="text/css" href="css/ahem.css">
|
|
<style>
|
|
p {
|
|
text-align: justify;
|
|
width: 135px;
|
|
font-size: 25px;
|
|
color: blue;
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
margin: 0;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<p>X X X X X</p>
|
|
</body>
|
|
</html>
|
|
|