I'm currently utilizing bootstrap 4 alpha 6.
Displayed below is a grid consisting of one row and two columns. The first column contains text, while the second column displays a popover:
<div class="row text-center align-items-center" style="height:200px;background-color:grey">
<div class="col-md-6">
<span>The following text is both horizontally and vertically centered.</span>
</div>
<div class="col-md-6">
<div class="popover popover-right">
<h3 class="popover-title">Popover left</h3>
<div class="popover-content">
<p>I am struggling to vertically center and right align this popover in the second column. Can you help me?</p>
</div>
</div>
</div>
</div>
Is there a way to ensure that the popover is both vertically centered and horizontally right-aligned within its column?
I've put together this codeply example for reference: