blob: 2f9dfb557a6aedc3eda94541b9e88cf6a2bf25ce (
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) 1px);
}
</style>
<span class="class3">
<div></div>
</span>
|