使用引导样式表使 gridview 更小

Posted

技术标签:

【中文标题】使用引导样式表使 gridview 更小【英文标题】:making the gridview smaller using bootstrap stylesheet 【发布时间】:2021-11-12 16:38:33 【问题描述】:

我想使用引导样式表使 asp.net Web 表单中的 Gridview 更小并居中。以下是我的代码:

      <table class="table table-sm " >
                       
                <asp:GridView   ID="grdTest"  runat="server" GridLines="Horizontal"  CssClass="table  table-sm table-bordered table-condensed table-responsive-sm table-hover table-striped" >   
                </asp:GridView>
                            
                        </table>

下面是引导表的图像:

我怎样才能使它更小并在屏幕上居中?现在,它正在拉伸整个内容页面。

我们将不胜感激。

【问题讨论】:

【参考方案1】:

'table-responsive'

给它一个包装器
<div class="table-responsive">
  <table class="table">
...
 </table>
</div>

【讨论】:

当我把表响应的包装器作为包装器。我可以看到桌子实际宽度的轮廓,但实际桌子被挤在角落里。有什么办法可以解决这个问题。

以上是关于使用引导样式表使 gridview 更小的主要内容,如果未能解决你的问题,请参考以下文章

使用引导表样式设置 div 样式?

无法在设计登录页面中显示引导样式表

如何在引导表中设置单选按钮或复选框的样式?

外部样式表不会覆盖引导程序

ASP.NET MVC 视图添加样式表类或更改引导程序

将样式表限制为一个标签和后代