缩小时Gridview空白区域

时间:2018-06-08 10:13:43

标签: css asp.net gridview

我在asp.net中有一个gridview。当我缩小页面时,网格视图中会出现一个空白区域,如image所示。怎么解决?

css代码:

.module {
border: 1px solid #9BA0AF;
margin: 0;
margin-top: 0px;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 15px;
background: #ffffff;
position:static;
height: 100%;
width:100px;
background-size: contain;
 }

.moduleheader {
height: 38px;
width: 100%;
background: #F1F1F4 url(../images/secondary_bar.png) repeat-x;
background-position: left top;
background-repeat: repeat-x;
background-size: 100% 100%;
}

我在div元素里面的gridview上面也有css代码。

<div style="border: 1px solid #9BA0AF; width:30%; margin: 20px 3% 0 3%;      background-color:white;
        border-radius: 15px 15px 15px 15px;
        -moz-border-radius: 5px 5px 5px 5px;
        -khtml-border-radius: 5px 5px 5px 5px;
        -webkit-border-radius: 5px 5px 5px 5px;
        overflow: hidden !important; position:static; background-size: 100% 100%;">
<asp:GridView ID="GridView1" runat="server" DataSourceID="SqlDataSource1" AutoGenerateColumns="false" GridLines="None" RowStyle-Wrap="false">

提前致谢。

1 个答案:

答案 0 :(得分:0)

我找到了解决方案!我将max-width属性添加到div中,如下所示:

<div style="border: 1px solid #9BA0AF; width:30%; margin: 20px 3% 0 3%; background-color:white;
        border-radius: 15px 15px 15px 15px;
        -moz-border-radius: 5px 5px 5px 5px;
        -khtml-border-radius: 5px 5px 5px 5px;
        -webkit-border-radius: 5px 5px 5px 5px;
        overflow: hidden !important; position:static; background-size: 100% 100%; max-width: 500px;">