首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > 网页设计 >

页面布局,该如何解决

2013-10-21 
页面布局这个布局在VS2010里面framset这个标签不能用,他们说用CSS+DIV,但是CSS+DIV该怎么写啊!布局CSSVisu

页面布局
页面布局,该如何解决
这个布局在VS2010里面framset这个标签不能用,他们说用CSS+DIV,但是CSS+DIV该怎么写啊! 布局 CSS Visual?Studio?2010
[解决办法]
如下代码所示:
<div id="rootDiv" style="border:1 solid red;">
<table name="myTbl" border="1">
<tr clospan="2">
<td>
<div id="theFirstDiv" style="border:1 solid red;" width="100%px" height="120px">
This is the first DIV.
</div>
</td>
</tr>
<tr>
<td>
<div id="theSecondDiv" style=border:1 solid red;" width="620px" height="120px">
This is the second DIV.
</div>
</tr>
</td>
<tr rowspan="2">
<td>
<div id="theSecondDiv" style=border:1 solid red;" width="620px" height="120px">
This is the second DIV.
</div>
</tr>
</td>
<tr>
<td>
<div id="theSecondDiv" style=border:1 solid red;" width="620px" height="120px">
This is the second DIV.
</div>
</tr>
</td>
</talbe>
</div>

热点排行