Easy way to center variable width divs in CSS

前端 未结 4 747
清歌不尽
清歌不尽 2020-12-25 12:46

I\'m trying to center a Div that will have varying width\'s (based on content of a website).

I read about a relative positioning technique here:

http://www.t

4条回答
  •  萌比男神i
    2020-12-25 13:03

    Well, it can't get any simpler than this and has full support on all browsers; doesn't even need a container:

    .centered {
      display:table;
      margin:0 auto;
    }
    
    
    content

    Here is a working fiddle: https://jsfiddle.net/1tnprnoz/

提交回复
热议问题