I have the following fragment of html code and what I intend is to limit the width of each one of the labels so that they are displayed in a whole screen and they are not cut, either through a line break or a horizontal scroll .
<select class="form-control valid" data-val="true" data-val-number="El campo Acto Sujeto a debe ser un número." id="IdActo" name="IdActo" aria-describedby="IdActo-error" aria-invalid="false" style="width:150px"><option value="">Seleccionar</option>
<optgroup label="Actos">
<option value="1">gggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggg</option>
<option value="2">uuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuu</option>
</select>
I have tried to add the bootstrap grids col-xs-6 col-md-6 col-lg-6 but only affect the select tag. I can not find a way to add different styles to each one.
How could I do it?
Greetings