问:如何使用mvc3 webgrid的宽度重新调整body的大小(宽度= 100%的宽网格视图)?
CSS -
.webgrid /* This works fine...stretches 100% with scrollbars at bottom of browser
{
width: 100%;
}
body
{
/* What can I put here for width: "Stretch the body the same % or length as the webgrid */
/* width: 100% <- DOESN'T WORK!!! Grid still runs over body page! */
}
Razor(cshtml) -
<div id="grid" class="gen">
@grid.GetHtml(
tableStyle: "webgrid",...)
答案 0 :(得分:0)
在视图中实现网格并在参数中设置tablestyle,如
@grid.GetHtml(tableStyle: "grid",.............)
选择您在tablestyle中提供的名称并将其用作类
<style type="text/css">
.grid{
width:100px;
}
</style>
我认为它有效
答案 1 :(得分:0)
表格的单元格不能小于其内容。
一些解决方案:
希望得到这个帮助。
答案 2 :(得分:0)
在Site.css中,对于类webgrid-Style,将宽度更改为100%。