mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-08 18:11:52 +00:00
26 lines
511 B
HTML
26 lines
511 B
HTML
<!DOCTYPE html>
|
|
<style>
|
|
div {
|
|
white-space: pre;
|
|
font-family: monospace;
|
|
tab-size: 8; /* the initial value, but since we're measuring against it, we might as well be sure */
|
|
}
|
|
span {
|
|
display: inline-block;
|
|
}
|
|
|
|
#s1 {
|
|
width: 6ch;
|
|
}
|
|
#s2 {
|
|
width: 7ch;
|
|
}
|
|
#s3 {
|
|
width: 7.3ch;
|
|
}
|
|
</style>
|
|
|
|
<div><span id="s1"></span>	A</div>
|
|
<div><span id="s2"></span>	A</div>
|
|
<div><span id="s3"></span>	A</div>
|
|
<div> A</div>
|