chrome-devtools-frontend
Version:
Chrome DevTools UI
31 lines (29 loc) • 731 B
HTML
<!--
Copyright 2021 The Chromium Authors
Use of this source code is governed by a BSD-style license that can be
found in the LICENSE file.
-->
<html>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width" />
<title>Code Block - Markdown View example</title>
<style>
#container {
max-width: 100vw;
max-height: 100vh;
border: 1px solid black;
padding: 24px;
overflow: auto;
display: grid;
grid-template-columns: 1fr 1fr;
grid-template-rows: auto;
}
</style>
</head>
<body>
<div id="container"></div>
<script type="module" src="./code-block.js"></script>
</body>
</html>