Non-Breaking Dash Html [Duplicate]
I Know That There Is a Non Breaking Whitespace -. Is There a Non-Breaking Dash (-) I Can Use So That My Word Doesn't Wrap (Break) at That Location. Also Can...
I know that there is a non breaking whitespace - . Is there a non-breaking dash (-) I can use so that my word doesn't wrap (break) at that location. Also can someone point me to a list with characters that are considered with priority when breaking a sentence ( like a whitespace). Thanks in advance :)
Use ‑ instead of -, see the following example:
.box {
border:1px solid #000;
width:40px;
word-wrap:normal;
}
<div class="box">
This is a test‑case / test-case
</div>