Is there a way to center the <div class="card">
in the middle of the page or body? It works perfectly on a desktop browser, but on mobile view, it's not aligning properly. How can I center it using...
html, body {
height: 100%;
background: linear-gradient(to top right, #fc2c77 0%, #6c4079 100%);
}
and
h-100,
align-items-center h-100
<div class="container h-100">
<div class="row align-items-center h-100 pt-5 pb-5">
<form class="col-12 wow fadeInUp " data-wow-delay="0.2s">
<div class="card">
...
</div>
</form>
</div>
</div>
It works perfectly on a desktop browserhttps://i.sstatic.net/BbARQ.png
but in mobile view, the form is cut off from the top and bottom and the background repeats while scrolling