whow to make a button on a new line? code example
Example 1: how to put two words in a button on single line
Mandatory Documents
Mandatory Documents
Example 2: 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;
}