6 回答

TA貢獻1943條經(jīng)驗 獲得超7個贊
和table的布局方式也有關系,css:
自動布局,根據(jù)內(nèi)容大?。?/p>
{
table-layout:auto;
}
固定布局,根據(jù)設置的寬高:
{
table-layout:fixed;
}

TA貢獻2036條經(jīng)驗 獲得超8個贊
可以試一下gridview中的column屬性ItemStyle-Width和ItemStyle-Hight可以固定其寬度及高度

TA貢獻1784條經(jīng)驗 獲得超9個贊
<div > ??????? <asp:Panel runat="server" ScrollBars="Both" BorderColor="Blue" ??????????? Border BorderWidth="1px" Width="51%" Height="72px"> ??????????? <asp:GridView runat="server" AutoGenerateColumns="False" ??????????????? Height="62px" Width="499px"> ??????????????? <Columns> ??????????????????? <asp:BoundField HeaderText="工號" ItemStyle-Width="40px"? ?ItemStyle-Height="20px"> ??????????????????????? <ItemStyle Width="40px" /> ??????????????????? </asp:BoundField> ??????????????????? <asp:BoundField HeaderText="姓名" ItemStyle-Width="60px" > ??????????????????????? <ItemStyle Width="60px" /> ??????????????????? </asp:BoundField> ??????????????????? <asp:BoundField HeaderText="姓別" ItemStyle-Width="60px" > ??????????????????????? <ItemStyle Width="60px" /> ??????????????????? </asp:BoundField> ??????????????????? <asp:BoundField HeaderText="部門" ItemStyle-Width="60px" > ??????????????????????? <ItemStyle Width="60px" /> ??????????????????? </asp:BoundField> ??????????????????? <asp:BoundField HeaderText="班組車間" ItemStyle-Width="110px" > ??????????????????????? <ItemStyle Width="60px" /> ??????????????????? </asp:BoundField> ??????????????????? <asp:BoundField HeaderText="學歷" ItemStyle-Width="90px" > ??????????????????????? <ItemStyle Width="40px" /> ??????????????????? </asp:BoundField> ??????????????????? <asp:BoundField HeaderText="民族" ItemStyle-Width="110px" > ??????????????????????? <ItemStyle Width="60px" /> ??????????????????? </asp:BoundField> ??????????????????? <asp:BoundField HeaderText="備注" ItemStyle-Width="200px" >?????????????????? ??????????????????????? <ItemStyle Width="150px" /> ??????????????????? </asp:BoundField> ??????????????? </Columns>?????????????? ??????????? </asp:GridView> ??????? </asp:Panel> ??? </div>
可根據(jù)情況調(diào)整。。。
- 6 回答
- 0 關注
- 520 瀏覽
添加回答
舉報