Created
July 4, 2016 09:55
-
-
Save theredstapler/83c97ec920cbf2b634a030b44c18dcce to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!doctype html> | |
<head> | |
<script src="lib/codemirror.js"></script> | |
<link rel="stylesheet" href="lib/codemirror.css"> | |
<script src="mode/javascript/javascript.js"></script> | |
<script src="mode/css/css.js"></script> | |
<style> | |
body { | |
background-color: #eee; | |
} | |
</style> | |
</head> | |
<body> | |
<div id="codeeditor"></div> | |
<script> | |
var editor = CodeMirror(document.getElementById("codeeditor"), { | |
value: "#test {\n position: absolute;\n width: auto;\n height: 50px;\n}", | |
mode: "css" | |
}); | |
</script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment