mirror of
https://github.com/servo/servo.git
synced 2025-06-17 04:44:28 +00:00
text layout, and unify the inline layout paths for pre- and normally-formatted text. This fixes a lot of "jumpiness" and removes the `new_line_pos` stuff. Closes #2260.
19 lines
290 B
HTML
19 lines
290 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<link rel="stylesheet" type="text/css" href="css/ahem.css">
|
|
<style>
|
|
p {
|
|
font-size: 10px;
|
|
font-family: Ahem, monospace;
|
|
width: 300px;
|
|
}
|
|
a {
|
|
color: blue;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<p>xxxxx xxxxx <a>xxxxx xxx xxxxx</a><br>xxxxxxxxxxx</p>
|
|
</body>
|
|
|