I have this textbox
<asp:TextBox ID="txtActiuni" class="form-control form-control-sm text-center bg-white" ReadOnly="true" Style="font-size: 12px; color: black; resize: none; font-weight: 400;" runat="server" ClientIDMode="Static" TextMode="MultiLine" Rows="3" Text="Implementare masuri de protectie stabilite Verificarea respectarii masurilor implementate Instruirea lucratorilor" />
and I want the text to be displayed in 3 lines.
Implementare masuri de protectie stabilite
Verificarea respectarii masurilor implementate
Instruirea lucratorilor
I tried inserting <br> and <br /> but is not working. What other options do I have? I can put a label with a fixed height but first I want to make sure it cannot be done in the form it is now