Skip to content

Instantly share code, notes, and snippets.

@timjgleeson
Created September 29, 2011 06:41
Show Gist options
  • Save timjgleeson/1250121 to your computer and use it in GitHub Desktop.
Save timjgleeson/1250121 to your computer and use it in GitHub Desktop.
Content Editability
<!DOCTYPE html>
<html>
<head>
<style>
div {background-color: #fec0ff; height: 300px; width: 400px;}
div[contentEditable = "true"] {background-color: #bada55;}
</style>
</head>
<body>
<div onclick="this.contentEditable = true;">
Blah Blah Blah
</div>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment