如何从kendo编辑器文本区域中删除滚动条

时间:2016-04-14 14:48:18

标签: kendo-editor

我的Kendo编辑器定义如下:

 @(Html.Kendo().Editor()
      .Name("myEditor")
      .Tag("div")
      .Tools(tools => tools
            .Clear()
            .Bold().Italic().Underline().Strikethrough()
            .JustifyLeft().JustifyCenter().JustifyRight().JustifyFull()
            .CreateLink().Unlink()
            .InsertImage()
            .TableEditing()
            .FontColor().BackColor()
      )
      .Value(@<text><p>Some content here</p></text>)
  )

当我运行代码时,编辑器底部会出现一个水平滚动条。

我想删除水平滚动条。我怎样才能做到这一点?

谢谢!

1 个答案:

答案 0 :(得分:0)

我得到了自己问题的答案。将class =“container-fluid”添加到我的div帮助。

谢谢!