Created
January 21, 2019 03:23
-
-
Save akatgelar/83916db5b2234a017f1b666971bbd4a7 to your computer and use it in GitHub Desktop.
CSS #2 - Answer for https://www.testdome.com/questions/bootstrap/modal-dialog/19287?visibility=17&skillId=10
This file contains hidden or 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> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<title>Modal Dialog</title> | |
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css"> | |
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script> | |
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js"></script> | |
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js"></script> | |
</head> | |
<body> | |
<button type="button" class="btn btn-primary" data-toggle="modal" data-target="#dialog">Open</button> | |
<div class="modal" id="dialog"> | |
<div class="modal-dialog"> | |
<div class="modal-body modal-content"> | |
<button type="button" class="btn btn-danger" data-dismiss="modal">Close</button> | |
</div> | |
</div> | |
</div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment