place-self
Last Updated: May 2, 2022
place-shelf is a shorthand CSS property for
Following CSS blocks are the same.
.item1{
justify-self:right;
align-self:end;
}
.item1{
place-self:end right;
}
1
2
3
4
5
6