Prevent Word Breaks For Link - Css
I have some links that I would like to prevent from being broken up when a wrap is needed. I would rather the whole entire link be moved to another line rather than half of the lin
Solution 1:
You are looking for white-space: nowrap
.
.boxa {
white-space: nowrap;
background: aqua;
color: black;
padding: 5px;
}
Post a Comment for "Prevent Word Breaks For Link - Css"