Answers for "align button to the right of the div"

2

how to right align a text button

.flex-box {
  display:flex;
  justify-content:space-between; //button with flex box
  outline: 2px dashed blue;
}

.flex-box-2 {
  display:flex;
  justify-content: flex-end;
  outline: 2px deeppink dashed;
}
Posted by: Guest on May-04-2020
0

how to align form buttons right

style="float: right;"
Posted by: Guest on September-18-2020

Code answers related to "align button to the right of the div"

Browse Popular Code Answers by Language