13 lines
205 B
CSS
13 lines
205 B
CSS
.wrapper {
|
|
display: grid;
|
|
grid-template-columns: repeat(4, 1fr);
|
|
grid-auto-rows: minmax(100px, auto);
|
|
}
|
|
.tbottom {
|
|
position:absolute;
|
|
left:20px;
|
|
bottom:0px;
|
|
height:30px;
|
|
width:100%;
|
|
}
|