css3 position fixed fixed center solutions to problems

fixed objects out of the normal document flow

solution:

footer {
  position:fixed;
  margin:0 auto;
  left:0;
  right:0; 
}

 

Guess you like

Origin www.cnblogs.com/Harold-Hua/p/11531870.html