My Development Notes


The text inside button breaks into multiple lines. How to fix this – CSS


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;
}

Leave a Reply

Your email address will not be published. Required fields are marked *