html – 中心一个div容器,而不设置宽度

前端之家收集整理的这篇文章主要介绍了html – 中心一个div容器,而不设置宽度前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在努力使我的角色回应中心.但是我无法设置宽度
<div class="wrapper">
    <div class="container">
        <div class="left Box">Content</div>
        <div class="right Box">Content</div>
    </div>
</div>

.wrapper {text-align:center}
.container {width:100%; margin: 10px auto}
.left {width:69%;max-width:350px; background:blue}
.right {width:29%;max-width:150px; background:red}
.Box {float:left;padding:20px}

我如何保持容器在中间?

演示:http://jsfiddle.net/z9zydnwL/

解决方法

Flexbox甚至可以中心漂浮的孩子!

所以我可以简单地添加display:flex和justify-content:center;到容器

.container {
    margin: 10px auto;
    display:flex;
    justify-content: center; /* align horizontal */
}

FIDDLE

Browser support这几天也不错

.wrapper {
  width: 100%;
  text-align: center
}
.container {
  margin: 10px auto;
  display: flex;
  justify-content: center;
  /* align horizontal */
}
.left {
  width: 69%;
  max-width: 350px;
  background: blue
}
.right {
  width: 29%;
  max-width: 150px;
  background: red
}
.Box {
  float: left;
  padding: 20px
}
<div class="wrapper">
  <div class="container">
    <div class="left Box">Content</div>
    <div class="right Box">Content</div>
  </div>
</div>
原文链接:https://www.f2er.com/html/228358.html

猜你在找的HTML相关文章