Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个 .container div,我想在页面上居中。
不幸的是, div 应该适合里面的表格。因此,如果表格占页面的 75%,我也希望占.container75%。
.container
我的 .container 看起来像这样:
.container{ display:inline-block; background:#FFF; height:500px; max-width:80%; }
我在这里做了一个 JSFiddle 。
感谢大家的帮助!
添加text-align:center到元素的父inline-block元素将使其居中。
text-align:center
inline-block
在这里更新了 jsFiddle
在这种情况下,它将是:
body { text-align:center; }