Fix misplaced percent sign in css, close iframe html tag (#4560)

This commit is contained in:
Fishuke
2021-01-05 19:09:37 +00:00
committed by GitHub
parent 5191fef619
commit 16979f7458

View File

@@ -14,11 +14,11 @@
border: 0;
margin: 2px;
padding: 0;
width: %100;
width: 100%;
}
#playground-iframe {
border: 0;
width: %100;
width: 100%;
}
</style>
<script type="text/javascript">
@@ -35,5 +35,6 @@
<body>
<h1 id="title">Outer Frame</h1>
<iframe id="playground-iframe" src="../playground.html">
</iframe>
</body>
</html>
</html>