div position absolute center horizontally code example
Example 1: css absolute center horizontal
.parent{ position: relative;}.child{ position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);}
Example 2: center a fixed div horizontally
left: 50%;
transform: translateX(-50%);