When CSS absolute positioning, centered horizontally without affecting other elements of the original document

 

div.absolutemiddle { 
  position : Absolute ; 
  left : 50% ; 
  Transform : Translate (-50%) ; / * translate 50% half their size, to achieve the middle level * / 
}

 

Guess you like

Origin www.cnblogs.com/qinlongqiang/p/12275338.html