欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  web前端

Html学习(7) - 画中画

程序员文章站 2022-05-04 22:34:37
...
画中画标签:
iframe

框架标签现在不是很常用,布局都是 div+css+table。框架很少使用了

[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>

以上就是Html学习(7) - 画中画内容,更多相关内容请关注PHP中文网(www.php.cn)!

相关标签: Html 画中画