Say you have a button like so:
<button>Book Now</button>
When you try to run it, the text splits into two lines, especially while using smaller screens. To fix this you can do this :
button {
display: inline-block;
white-space: nowrap;
}
Say you have a button like so:
<button>Book Now</button>
When you try to run it, the text splits into two lines, especially while using smaller screens. To fix this you can do this :
button {
display: inline-block;
white-space: nowrap;
}