Skip to content

Instantly share code, notes, and snippets.

@DanielSwensson
Created June 4, 2013 15:54
Show Gist options
  • Save DanielSwensson/5707099 to your computer and use it in GitHub Desktop.
Save DanielSwensson/5707099 to your computer and use it in GitHub Desktop.
bootstrap modal
<div id="#" class="modal hide fade" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">&times;</button>
<h3>Modal header</h3>
</div>
<div class="modal-body">
<p>One fine body…</p>
</div>
<div class="modal-footer">
<a href="#" class="btn">Close</a>
<a href="#" class="btn btn-primary">Save changes</a>
</div>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment