我正在使用ASP.NET主页。我的母版页中有3个表作为列。第一个表加载第二个表,其中包含我的“ContentPlaceHolder”,然后是表3。
如何或者我该怎样做才能加载表1然后再加载表3,然后最后加载包含“ContentPlaceHolder”的表2?
答案 0 :(得分:0)
尝试以下服装:
<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>