chrome-devtools-frontend
Version:
Chrome DevTools UI
39 lines (34 loc) • 682 B
HTML
<!--
Copyright 2023 The Chromium Authors. All rights reserved.
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>Select menu example</title>
<style>
#root {
padding: 20px;
width: 80%;
margin: 0 auto;
}
#width-150 {
width: 150px;
}
#width-400 {
width: 400px;
}
devtools-select-menu {
display: block;
margin: 15px;
}
</style>
</head>
<body>
<div id="root"></div>
<script src="./wide-option.js" type="module"></script>
</body>
</html>