I have a carousel and I need to display text at the center of the carousel (both horizontally and vertically center). so I went using the flex display property and I didn't get the expected results.
.heroText {
display: flex;
position: absolute;
align-items: center; // align the element vertically center
justify-content: center; // align the element horizontally center
z-index: 999 !important; // display the text above carousel
}
<div class="heroText">
<p>farmers</p>
</div>