【问题标题】:ASP.net GridView MarginsASP.net GridView 边距
【发布时间】:2009-08-04 15:33:25
【问题描述】:

如何设置从 ASP.net GridView 生成的 HTML 表格的 margin-left 属性?

【问题讨论】:

    标签: asp.net css


    【解决方案1】:
    <asp:GridView id="hurfDurf" style="margin-left:10%;" runat="server">
    </asp:GridView>
    

    或者,在您的 aspx 页面顶部...

    <head>
        <style type="text/css">
        #hurfDurf table
        {
            margin-left:10px;
        }
        </style>
    </head>
    

    【讨论】:

    • 嗯?我没有在 div 中包装任何东西。
    猜你喜欢
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2012-12-21
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    相关资源
    最近更新 更多