I am showing text with some elipsis. With my current css the elipsis shows by breaking the word.
I need the elipsis to be shown after a word completes for proper readability.
Below is my css
.myContainer {
  text-overflow: ellipsis;
  max-width: 250px;
  overflow: hidden;
  white-space: nowrap;
  padding-bottom: 15px;
}
<div class="myContainer">
  Testing the dataset in path oregon location should done
</div>
I do not want to change the width of the container. The word location is not shown.
Elipsis should be shown after the location word(complete)