I’m confused by the auto
property behavior in CSS Grid grid-template-columns
. Here’s my code:
<div class="container">
<div class="item">1 Lorem ipsum dolor sit amet, consectetur adipisicing elit. Adipisci beatae odit ratione rerum! Sapiente, quis!</div>
<div class="item">2 Testttttttt</div>
<div class="item">3 Testttttttt</div>
</div>
.container {
display: grid;
grid-template-columns: auto auto auto;
}
.item {
background-color: goldenrod;
border: 1px solid #000;
}
If I set the columns to grid-template-columns: auto auto 1fr;
, then the first 2 columns seem to be set to the width of their content while the last one takes up the remaining space (which is what I’d expect):
https://codepen.io/El_Escandalo/pen/pojOYxL
But if I set the columns to grid-template-columns: auto auto auto;
, then I’m not clear exactly what is deciding the width of the columns? Are they dividing the available space after subtracting the total content width from the total width of the container?
https://codepen.io/El_Escandalo/pen/VwvGRgL
And just so I’m clear, auto
can function differently depending on what? What determines whether auto
will shrink to its content?