DEV Community

Discussion on: 1 line css to center object

Collapse
 
louislow profile image
Louis Low

By using Yogurt CSS,

In HTML,

<y class="flex justify-center items-center"> ... </y>

In SCSS,

.box {
  @extend .flex, .justify-center, .items-center;
}
Collapse
 
rs9110 profile image
rs9110

That's awesome.