1

我有一个定义如下的剑道编辑器:

 @(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>)
  )

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

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

谢谢!

4

1 回答 1

-1

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

谢谢!

于 2016-04-14T14:52:55.947 回答