問:如何使用mvc3 webgrid的寬度重新調整大小(寬度爲100%的寬網格視圖)?如何用webgrid調整身體大小?
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! */
}
剃刀(CSHTML) -
<div id="grid" class="gen">
@grid.GetHtml(
tableStyle: "webgrid",...)
嗨,感謝您的回覆。這並不能解決問題。在原始帖子中查看我的修改。這實際上是我目前實施的(webgrid的寬度爲100%)。問題是當網格很寬時(以及網格設置爲100%),主體不會重新調整大小。 – JaJ