mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-05 16:41:52 +00:00
Makes grid size parser to handle not only calc() but min(), max() and other CSS functions we support.
6 lines
No EOL
195 B
HTML
6 lines
No EOL
195 B
HTML
<style>
|
|
.grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fill, minmax(max(100px, 200px), 1fr));
|
|
}
|
|
</style><div class="grid"><div>a</div><div>b</div><div>c</div><div>d</div></div> |