I want to center the text horizontally with top margin I tried few options example text-align: center; but it doesn’t work.
So below is the solution:
The CSS to Align Center the Text
|
1 2 3 4 5 6 7 8 9 10 11 12 |
<style> .align-center-with-top-margin{ /*u can change the top margin*/ top: 18%; /* to make text align center */ left: 50%; transform: translate(-50%, -50%); margin: 0; width: 100%; } </style> |
The HTML Code
|
1 2 3 |
<div class="align-center-with-top-margin"> Undangan </div> |
The Output of Text Align Center with Top Margin


