mirror of
https://github.com/flutter/samples.git
synced 2026-03-24 13:22:01 +00:00
38 lines
602 B
HTML
38 lines
602 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title></title>
|
|
<style>
|
|
html, body {
|
|
height: 100%;
|
|
margin: 0;
|
|
background: #eee;
|
|
}
|
|
|
|
div {
|
|
position: relative;
|
|
margin: 0 auto;
|
|
max-width: 600px;
|
|
height: 100%;
|
|
}
|
|
|
|
iframe {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
border: 0;
|
|
display: block;
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div>
|
|
<iframe src="frame.html"></iframe>
|
|
</div>
|
|
</body>
|
|
</html>
|