Key records of web page production_html/css_WEB-ITnose

WBOY
Release: 2016-06-24 12:04:19
Original
1073 people have browsed it

I have been learning PHP development recently, and I always want to write down the key points, but sometimes I forget to remember them.

The domain name of my free space is cysky.kuphp.net

In the first version of my personal website (just a few small web pages)

Iframe nested web page function is used. This use It is still useful in photo albums and message boards.

The usage method is as follows:

1. Add

<iframe height="330" src="URL" frameborder="0" width="420"></iframe>
Copy after login


Scrolling indicates whether to display the page scroll bar. The optional parameters are auto, yes, and no. If this parameter is omitted, the default is auto.
2. The hyperlink points to the embedded web page, just give the iframe a name.

<iframe name="**">
Copy after login


The method is, for example, I named it aa, and write this HTML sentence,
Then, the hyperlink statement on the web page should be written as:

</iframe><iframe height="330" src="http://www.cnblogs.com" frameborder="0" width="500" name="aa"></iframe>
Copy after login


3. If frameborder is set to 1, The effect is like a text box

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template