开发者

Load tables in correct order when using ASP.NET MasterPages

开发者 https://www.devze.com 2023-01-22 22:26 出处:网络
I am making use of an ASP.NET Masterpage. I have 3 tables as Columns in my Masterpage. The first table load then the second table that contains my \"ContentPlaceHolder\" and then table 3.

I am making use of an ASP.NET Masterpage. I have 3 tables as Columns in my Masterpage. The first table load then the second table that contains my "ContentPlaceHolder" and then table 3.

How or what must I do to load table 1 and then table 3 and then lastly the table 2 that contains the "ContentP开发者_开发问答laceHolder"?


try the following senario :

<Style>
#left
{
    float:left;
    width:150px;
    background-color:Black;
}
#right
{
    float:right;
    width:150px;
    background-color:Yellow;
}
#center
{
    margin-left:auto;
    margin-right:auto;
}
</Style>
<div id="left">
    Left Column
    </div>
    <div id="right">
    right Column
    </div>
    <div id="center">
    Content
    </div>
0

精彩评论

暂无评论...
验证码 换一张
取 消