JSFiddle - React, Tailwind, and code Playground

by Khrys

HTML

<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css">
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script>
<div class="dropdown">
  <button class="btn btn-primary" id="dLabel" type="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
    Dropdown trigger
    <span class="caret"></span>
  </button>
  <ul class="dropdown-menu" aria-labelledby="dLabel">
    <li>
      <a href="#"><span class="glyphicon glyphicon-align-left"></span></a>
      <a href="#"><span class="glyphicon glyphicon-star"></span></a>
    </li>
  </ul>
</div>

CSS

body {
  margin: 30px;
}