Answers for "do i need to set width on grid container"

CSS
4

css grid full width row

.child-item {
  grid-column: 1 / -1;
}
Posted by: Guest on October-01-2020
2

div inline grid 100% width

.customGrid {
	display: inline-grid;
    grid-template-columns:100%;
}
Posted by: Guest on September-03-2021

Code answers related to "do i need to set width on grid container"

Browse Popular Code Answers by Language