Home  >  Article  >  Web Front-end  >  Html learning (7) - picture-in-picture

Html learning (7) - picture-in-picture

黄舟
黄舟Original
2016-12-29 15:39:382088browse

Picture-in-picture tag:

iframe

Frame tag is not very commonly used now, the layout is div+css+table. The framework is rarely used

[code]<!DOCTYPE html> 
<html> 
<head>   
<meta charset="utf-8">   
<!-- Always force latest IE rendering engine (even in intranet) & Chrome Frame         
Remove this if you use the .htaccess -->   
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">   
<title>iframe</title>   
<meta name="description" content="">   
<meta name="author" content="sync">   
<meta name="viewport" content="width=device-width; initial-scale=1.0">   
<!-- Replace favicon.ico & apple-touch-icon.png in the root of your domain and delete these references -->   
<link rel="shortcut icon" href="/favicon.ico">   
<link rel="apple-touch-icon" href="/apple-touch-icon.png"> 
</head> 
<body>     
<iframe src="table.html" height="600" width="800">这是画中画标签</iframe> 
</body> 
</html>

The above is Html learning (7) - picture-in-picture content, for more related content, please pay attention to the PHP Chinese website ( www.php.cn)!


Statement:
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