Skip to content

Instantly share code, notes, and snippets.

@hwshim0810
Created April 24, 2018 15:41
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 hwshim0810/9a50ede1e00186609546ea3f519e5082 to your computer and use it in GitHub Desktop.
Save hwshim0810/9a50ede1e00186609546ea3f519e5082 to your computer and use it in GitHub Desktop.
Bootstrap modal example
<a href="#modalBox" data-toggle="modal">OpenButton</a>
<div class="modal fade" id="modalBox" tabindex="-1" role="dialog" aria-labelledby="modal-label" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal"><span aria-hidden="true">&times;</span><span class="sr-only">Close</span></button>
<h4 class="modal-title" id="modal-label">
Title Area
</h4>
</div>
<div class="modal-body">
<p class="modal-body-text">
Body
</p>
</div>
</div>
</div>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment