Answers for "css button alignment right"

3

align button right

<input type="button" value="Click Me" style="float: right;">
Posted by: Guest on March-04-2020
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

Browse Popular Code Answers by Language