在ASP.NET中居中FormLayout

时间:2014-01-20 14:13:00

标签: html asp.net css

我有ASP.NET WebForms项目。我需要将ASPxFormLayout(来自DevExpress的控件)置于中心位置。我已经成为冠军头衔,但我已经尝试过,并且无法将FormLayout置于中心位置。这可能吗?

的aspx

<section class="featured">
        <div class="content-wrapper">
            <hgroup class="title">
                <h1><%: Title %></h1>
            </hgroup>

            <dx:ASPxFormLayout ID="ASPxFormLayout1" runat="server">
</dx:ASPxFormLayout>
            </div>
    </section>

的CSS

.featured {
    /*background-color: #fff;*/
}

    .featured .content-wrapper {
        background-color: red;
        /*
        background-color: #7ac0da;
        background-image: -ms-linear-gradient(left, #7ac0da 0%, #a4d4e6 100%);
        background-image: -o-linear-gradient(left, #7ac0da 0%, #a4d4e6 100%);
        background-image: -webkit-gradient(linear, left top, right top, color-stop(0, #7ac0da), color-stop(1, #a4d4e6));
        background-image: -webkit-linear-gradient(left, #7ac0da 0%, #a4d4e6 100%);
        background-image: linear-gradient(left, #7ac0da 0%, #a4d4e6 100%);
        color: #3e5667;
            padding: 20px 20px 20px 20px;
            */
    }

        .featured hgroup.title h1, .featured hgroup.title h2 {
            color: black;
        }

        .featured p {
            font-size: 1.1em;
        }

/* page titles */
hgroup.title {
    /*margin-bottom: 10px;*/
    text-align: center;
}

hgroup.title h1, hgroup.title h2 {
    display: inline;
}

hgroup.title h2 {
    font-weight: normal;
    margin-left: 3px;
}

/* features */
section.feature {
    width: 300px;
    padding: 10px;
}

0 个答案:

没有答案