Vitali Kurdasov
Has successfully completed the online course Intermediate (200)
Has successfully completed the online course Basics (100)
Has successfully completed the online course Advanced (310)
Has successfully completed the Intermediate Certification
1 year ago
#35441
::
Hi Aditya,
i don’t have a good answer for this, the only way i found that works is with css for the specific element that you want to have at the bottom.
My solution is to create a css class that moves that element absolutly:
.myclass{
top: 842px;
transform: translate(50%,-50%);
right:50%;
position: absolute;
}
Adjust the top pixels by your favor
Maybe someone else has a better option then me.