Skip to main content
deleted 42 characters in body
Source Link
Penny Liu
  • 17.9k
  • 5
  • 89
  • 109
   .container {
      display: flex;
      flex-direction: column; //this will allow flex-end to move item to the right            
      align-items: center;
   }
   .right-item {
      align-self: flex-end;
   }
   .container {
      display: flex;
      flex-direction: column; //this will allow flex-end to move item to the right            
      align-items: center;
   }
   .right-item {
      align-self: flex-end;
   }
.container {
  display: flex;
  flex-direction: column; //this will allow flex-end to move item to the right
  align-items: center;
}
.right-item {
  align-self: flex-end;
}
Source Link
Dots Me
  • 289
  • 2
  • 2

   .container {
      display: flex;
      flex-direction: column; //this will allow flex-end to move item to the right            
      align-items: center;
   }
   .right-item {
      align-self: flex-end;
   }