Created
October 28, 2014 00:04
-
-
Save hvent90/cfaaaf317bd1b164875c to your computer and use it in GitHub Desktop.
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
<html> | |
<head> | |
<!-- CSS & jQuery for Bootstrap and jQuery --> | |
<link href="http://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css" rel="stylesheet"> | |
<script src="https://code.jquery.com/jquery-2.1.1.min.js"></script> | |
<script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js"></script> | |
<!-- Custom Javascript Files --> | |
<link href="css/custom.css" rel="stylesheet" /> | |
<style> | |
.row { | |
border-bottom: 1px solid black; | |
border-left: 1px solid black; | |
border-right: 1px solid black; | |
padding: 5px; | |
} | |
li { | |
list-style: none; | |
} | |
li ul { | |
position: absolute; | |
} | |
ul li { | |
z-index: 100; | |
} | |
</style> | |
<script> | |
</script> | |
</head> | |
<body> | |
<div class="container"> | |
<div style="" class="row"> | |
<li>Menu | |
<ul> | |
<li>Drop Down Item 1</li> | |
<li>Drop Down Item 2</li> | |
</ul> | |
</li> | |
</div> | |
</div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment