position item in center css absolute code example
Example 1: css absolute center horizontal
.parent{ position: relative;}.child{ position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);}
Example 2: how to center a div with position absolute
left:50%;
transform:translate(-50%, -50%);