Skip to content

Instantly share code, notes, and snippets.

@hvent90
Created October 28, 2014 00:04
Show Gist options
  • Save hvent90/cfaaaf317bd1b164875c to your computer and use it in GitHub Desktop.
Save hvent90/cfaaaf317bd1b164875c to your computer and use it in GitHub Desktop.
<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