Kendo NumericTextBox样式

时间:2015-08-04 20:56:46

标签: telerik kendo-asp.net-mvc

我有以下内容,我想知道如何摆脱黄色区域。谢谢你的帮助!

@ Html.LabelFor(e => e.Invoice)

    @(Html.Kendo().NumericTextBoxFor(e => e.Invoice)
        .HtmlAttributes(new { style = "width: 100%; border: 0px;" })
        .Format("#")
        .Decimals(0)
        .Spinners(false)
    )

enter image description here

1 个答案:

答案 0 :(得分:0)

我能够通过添加 - display:inline-block -

来解决这个问题

谢谢大家。