Answers for "flex-direction to row and align-items to flex-end"

CSS
0

flex starty

align-items: flex-start;
Posted by: Guest on October-12-2021
0

align items left after flex-direction row reverse

#main {
  width: 400px;
  height: 400px;
  border: 1px solid #c3c3c3;
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-start;
  justify-content: flex-end; <------need this
}

#main div {
  width: 50px;
  height: 50px;
}
Posted by: Guest on July-20-2021

Code answers related to "flex-direction to row and align-items to flex-end"

Browse Popular Code Answers by Language