Answers for "how to put two words in a button on single line"

0

how to put two words in a button on single line

.group {
  display: flex;
  flex-direction: row;
  border: 1px solid black;
  max-width: 100px;
}

.group > div {
  border: 1px solid green;
  margin: 2px;
}
Posted by: Guest on May-27-2020
0

how to put two words in a button on single line

<div class="group">
  <div>Mandatory Documents</div>
  <div><button>Button</button></div>
</div>
<br>
<div class="group">
  <div>Mandatory Documents</div>
  <div><button>Button</button></div>
</div>
Posted by: Guest on May-27-2020

Code answers related to "how to put two words in a button on single line"

Browse Popular Code Answers by Language