mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-27 10:07:15 +02:00
14 lines
246 B
HTML
14 lines
246 B
HTML
<!DOCTYPE html>
|
|
<style>
|
|
.fixed_width {
|
|
max-width: 50px;
|
|
border: 1px solid black;
|
|
}
|
|
|
|
.nowrap {
|
|
white-space: nowrap;
|
|
}
|
|
</style>
|
|
<div class="fixed_width">
|
|
<span class="nowrap">ABC</span><span> </span><span class="nowrap">ABC</span>
|
|
</div> |