Summary of techniques for implementing complex page layout using frameset

Summary of techniques for implementing complex page layout using frameset

Copy code
The code is as follows:

<html>
<!--Mixed frame layout:
To achieve complex page layout, just use the <frameset> tag in the <frameset> tag, and then set it through the cols and rows attributes.
<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

Copy code
The code is as follows:

<html>
<head></head>
<!--The target attribute in the a tag points to the element frame in the frame collection
The value of target is the value of name in the frame tag -->
<body>
<a href="http://www.itheima.com" target="top">Official website</a>

<a href="http://www.baidu.com" target="right">Baidu</a>
</body>
</html>

<<:  Implementation of CSS circular hollowing (coupon background image)

>>:  Use ab tool to perform API stress test on the server

Recommend

Implementation of Nginx configuration Https security authentication

1. The difference between Http and Https HTTP: It...

Summary of various methods of MySQL data recovery

Table of contents 1. Introduction 2. Direct recov...

A brief discussion on the implementation of fuzzy query using wildcards in MySQL

In the MySQL database, when we need fuzzy query, ...

Responsive Web Design Learning (2) — Can videos be made responsive?

Previous episode review: Yesterday we talked abou...

MySql login password forgotten and password forgotten solution

Method 1: MySQL provides a command line parameter...

Sample code for separating the front-end and back-end using FastApi+Vue+LayUI

Table of contents Preface Project Design rear end...

Div picture marquee seamless connection implementation code

Copy code The code is as follows: <html> &l...

Pessimistic locking and optimistic locking in MySQL

In relational databases, pessimistic locking and ...

3 different ways to clear the option options in the select tag

Method 1 Copy code The code is as follows: documen...

Detailed explanation of COLLATION examples in MySQL that you may have overlooked

Preface The string types of MySQL database are CH...

Let IE support CSS3 Media Query to achieve responsive web design

Today's screen resolutions range from as smal...

CSS3 realizes the effect of triangle continuous enlargement

1. CSS3 triangle continues to zoom in special eff...