I'm having trouble adjusting the width of items in a DropDownList. I want the width of the DropDown items to be different from the DropDown itself. Can anyone assist me with this?
<div class="col-md-3">
@f.FormGroup().DropDownList("IdTipoAcao", new SelectList(this.ViewBag.TipoAcao, "IdTipoAcao", "Tipo", Model.IdTipoAcao > 0 ? Model.IdTipoAcao : 0)).Id("cmbTipoAcao").Label().LabelText("Tipo de Ação")
</div>