I am using Angular5 for front-end development. I am trying with css but not getting any solution. Here is picture bellow. I want a solution that will be used Ellipsis for overflow text in dropdown boxes. ![] https://i.stack.imgur.com/fylO6.png
         <div class="col-3 form-group d-flex">
            <label>Air</label>
            <select>
               <option>One - A long option that gets cut off</option>
               <option>Two - A long option that gets cut off</option>
            </select>
        </div>
    select {
           width: 100%; 
           overflow: hidden; 
           text-overflow: ellipsis;
         }
 
    