Source code
Revision control
Copy as Markdown
Other Tools
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>text-align: justify and preserved tabs - reference</title>
<link rel="stylesheet" type="text/css" href="/fonts/ahem.css">
<style>
div {
font: 25px Ahem, monospace;
width: 30ch;
white-space: pre-wrap;
tab-size: 8;
border: 1px solid gray;
padding: 2px;
margin: 2px;
}
</style>
</head>
<body>
<p>The layout in the two boxes should be the same:</p>
<div>a b c	tab 1	tab 2	jklmnop</div>
<div>a b c	tab 1	tab 2	jklmnop</div>
</body>