我的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>)
)
当我运行代码时,编辑器底部会出现一个水平滚动条。
我想删除水平滚动条。我怎样才能做到这一点?
谢谢!
答案 0 :(得分:0)
我得到了自己问题的答案。将class =“container-fluid”添加到我的div帮助。
谢谢!