blob: 78bf13616fd8cbb10d78faf963370f73c7c363d5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<!DOCTYPE html>
<style>
div { width: 150000px; }
span {
display: grid;
min-width: min-content;
grid-template-columns: repeat(auto-fit, minmax(0%, auto));
}
</style>
<span class="class3">
<div></div>
</span>
|