-
-
Save dwcullop/25eaffd9def2eaf3a814a962c122ea19 to your computer and use it in GitHub Desktop.
JS Bin // source http://jsbin.com/wubogeyebu
This file contains 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"> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | |
<link href="http://maxcdn.bootstrapcdn.com/bootstrap/latest/css/bootstrap.min.css" rel="stylesheet" type="text/css"> | |
<title>JS Bin</title> | |
</head> | |
<body> | |
<div class="container"> | |
<div class="row"> | |
<form> | |
<div class="form-group"> | |
<div class="form-label col-xs-4"> | |
<label>Select!</label> | |
</div> | |
<div class="col-xs-8"> | |
<select class="selectA select form-control"> | |
<option>Opt1</option> | |
<option>Opt2</option> | |
</select> | |
</div> | |
</div> | |
<div class="form-group"> | |
<div class="col-xs-offset-4 col-xs-8"> | |
<button>Click me</button> | |
</div> | |
</div> | |
</form> | |
</div> | |
</div> | |
<script src="http://code.jquery.com/jquery.min.js"></script> | |
<script src="http://maxcdn.bootstrapcdn.com/bootstrap/latest/js/bootstrap.js"></script> | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment