DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> WEB網站前端 >> 前端技巧 >> 用frameset實現復雜的頁面布局技巧小結
用frameset實現復雜的頁面布局技巧小結
編輯:前端技巧     

復制代碼代碼如下:
<html>
<!--混合框架的布局:
要想實現復雜的頁面布局,只需在<frameset>標簽中在使用<frameset>標簽,然後通過cols,rows屬性進行設置就ok了-->
<frameset rows="50%,50%">
<frame src="02圖片標簽.html" name="top">
<frameset cols="25%,75%">
<frame src="frame_a.html">
<frame src="02圖片標簽.html" name="right">
</frameset>
</frameset>
</html>

frame_a.html

復制代碼代碼如下:
<html>
<head></head>
<!--a標簽中target屬性指向框架集合中的元素frame
target的值就是frame標簽中name的值-->
<body>
<a href="http://www.itheima.com" target="top">官網</a>

<a href="http://www.baidu.com" target="right">百度</a>
</body>
</html>
XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved