How can I set the width of an autocomplete using css? I know I can set it up when I set up the width when I declare it, like so.
@(Html.Kendo().AutoComplete().Name("test").HtmlAttributes(new { style="width:400px"}))
But I want to know how to do it in css. I tried the following and it didn't work
.k-autocomplete .k-header
{
width: 300px;
}