Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
  <head>
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/codemirror/5.5.0/codemirror.min.css"/>
    <style>
      .CodeMirror {
         height: auto;
         width: auto;
         overflow-y: hidden;
         overflow-x: hidden;
         color: white;
      }
      .CodeMirror-scroll {
         background-color: blue;
      }
    </style>
    <script src="https://cdnjs.cloudflare.com/ajax/libs/codemirror/5.5.0/codemirror.min.js"></script>
  </head>
  <meta charset="UTF-8">
  <body>
    <div style="width: 100px;">
      <div id="here"></div>
    </div>
    <script>
      var here = document.getElementById('here');
      CodeMirror(function (editor) {
         here.appendChild(editor);
      }, {});
    </script>
  </body>
</html>
Output

You can jump to the latest bin by adding /latest to your URL

Dismiss x
public
Bin info
anonymouspro
0viewers