JSFiddle - React, Tailwind, and code Playground

HTML

<script src="https://code.jquery.com/jquery-3.3.1.min.js"></script>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<div class="container">
   <button type="button" id="popoverButton">Click Me!</button>
</div>

CSS

.container {
  text-align:right;
  width: 200px;
  padding: 20px;
  background: blue;
}

JavaScript

$('#popoverButton').popover({
  container: 'body',
  placement: "bottom",
  html: true,
  viewport: { selector: '.container', padding: 5 },
  content: '<strong>Hello Wooooooooooooooooooooooorld</strong>'
});