Hi!! I’m trying to align a vertical line element to the center of my page but I can’t seem to figure it out. Is there any css that can help?
Thank you in advance 
Hi!! I’m trying to align a vertical line element to the center of my page but I can’t seem to figure it out. Is there any css that can help?
Thank you in advance 
Hi Delfina,
Using the flex layout, please check this guide on how to center elements.
If in case not possible using those settings, here’s your guide on how to inspect element to get the correct selector:
Once you get the correct selector, you can use it then to center it. The CSS will depend on your structure.
Hope this helps.
Thank you!!
I ended up just customizing it with the css:
.customclass {
margin: auto;
left: 50%;
}
Thank you for your help!!
Glad to hear you got it sorted, Delfina.
This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.