I have a simple view with an AutoComplete, a MultiSelect, and an IntegerTextBox side-by-side with no other styling.
@Html.Kendo().AutoComplete().Name("AutoComplete").Placeholder("AutoComplete")
@Html.Kendo().MultiSelect().Name("MultiSelect").Placeholder("MultiSelect")
@Html.Kendo().IntegerTextBox().Name("IntegerTextBox").Placeholder("IntegerTextBox")
The AutoComplete and IntegerTextBox are the same width as each other and have the same font for the placeholder. The MultiSelect is radically different - it fills the width of the page and its placeholder has Arial font, which differs from the other two.
What's going on?