blob: 9ff4ad9d24a5e7c9ac46b49700c62fab2c2770e2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
<!doctype html><style>
html { background: white; }
.outer {
width: max-content;
padding: 10px;
background: pink;
}
.inner {
display: flex;
background: orange;
}
</style><body class="outer"><div class="inner">this text should be all on one line
|