Skip to content

Instantly share code, notes, and snippets.

@makzan
Created December 21, 2012 14:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save makzan/4353291 to your computer and use it in GitHub Desktop.
Save makzan/4353291 to your computer and use it in GitHub Desktop.
Untitled
#content {
border: 2px solid green;
position: relative;
margin: 10px;
margin-top: 100px;
height: 24px;
line-height: 24px;
}
#content:after {
content: 'div#content';
background: green;
padding: 5px;
position: absolute;
top: -36px;
left: 0;
color: white;
}
<div id='content'></div>​
<script src='http://code.jquery.com/jquery.min.js'></script>
$(function(){
$('#content').html('This is executed after the page is ready (DOM Ready)');
});​
{"view":"split-vertical","fontsize":"80","seethrough":"","prefixfree":"1","page":"html"}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment