I have a problem when it comes to showing text on my screen:
I have a span tag with id="obsEmenda" that gets a varchar from the server:
<span class="progress-description">OBSERVAÇÃO: <strong><span id="obsEmenda"></span></strong></span>
The text in this span is larger than the size of the container and does not show the rest. I wanted to find a way to break this text so that it all appears on the screen. Would it be the case of using a textarea? Picture of how it is:
Notice that it puts 3 points at the end due to some properties of the class 'progress-description'.
.progress-description {
display: block;
font-size: 14px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}