4

我试图让 3 个 div 出现在编队的同一行:左 - 居中 - 右

例如,一个 div 左对齐,下一个居中,最后一个 div 右对齐。

有谁知道如何做到这一点?我有 2 个 div 左右对齐,但是如果我在中间引入一个居中的 div,它会将最右边的 div 移动到新行上。

4

5 回答 5

22
.left-col {
    float: left;
    width:25%;
}
.center-col {
    float: left;
    width: 50%;
}
.right-col {
    float: left;
    width: 25%;
}

<div class="left-col">purple</div>
<div class="center-col">monkey</div>
<div class="right-col">dishwasher</div>
于 2013-06-24T15:10:40.530 回答
1

一种简单的方法是使用任何框架。例如:960gs -> http://960.gs/

使用此框架,您可以在页面中设置列。此处示例:http: //960.gs/demo.html

于 2013-06-24T15:08:05.390 回答
1

你可以使用:display:flex;

帮助您生成代码并了解其工作原理的工具:http: //the-echoplex.net/flexyboxes/

在您的情况下,它可能是:

.flex-container {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-direction: normal;
    -moz-box-direction: normal;
    -webkit-box-orient: horizontal;
    -moz-box-orient: horizontal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-align-content: stretch;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
    -webkit-box-align: start;
    -moz-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    }

.flex-item:nth-child(1) {
    -webkit-box-ordinal-group: 1;
    -moz-box-ordinal-group: 1;
    -webkit-order: 0;
    -ms-flex-order: 0;
    order: 0;
    -webkit-box-flex: 0;
    -moz-box-flex: 0;
    -webkit-flex: 0 1 auto;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    -webkit-align-self: auto;
    -ms-flex-item-align: auto;
    align-self: auto;
    }

.flex-item:nth-child(2) {
    -webkit-box-ordinal-group: 1;
    -moz-box-ordinal-group: 1;
    -webkit-order: 0;
    -ms-flex-order: 0;
    order: 0;
    -webkit-box-flex: 0;
    -moz-box-flex: 0;
    -webkit-flex: 0 1 auto;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    -webkit-align-self: auto;
    -ms-flex-item-align: auto;
    align-self: auto;
    }

.flex-item:nth-child(3) {
    -webkit-box-ordinal-group: 1;
    -moz-box-ordinal-group: 1;
    -webkit-order: 0;
    -ms-flex-order: 0;
    order: 0;
    -webkit-box-flex: 0;
    -moz-box-flex: 0;
    -webkit-flex: 0 1 auto;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    -webkit-align-self: auto;
    -ms-flex-item-align: auto;
    align-self: auto;
    }

/*
    Legacy Firefox implementation treats all flex containers
    as inline-block elements.
*/

@-moz-document url-prefix() {
.flex-container {
    width: 100%;
    -moz-box-sizing: border-box;
    }

}

其他伪造an的方法horizontal-align-content:justify(这是组成规则)。 http://codepen.io/gcyrillus/pen/Babcs

用更少的 CSS 来适应旧的 IES

.justify {
  text-align:justify;
  line-height:0;
}
.justify:after, .justify span.ie {
  content:'';
  display:inline-block;
  width:100%;
  vertical-align:top;
}
.justify > div {
  text-align:left;
  line-height:1.2em;
  display:inline-block;
  *display:inline;
  zoom:1;
  width:50%;
  border:solid;
}
.justify > div:nth-child(odd) {
  width:20%;
}

Float 和 display:table 已经讨论过了 :)

于 2013-06-24T15:29:03.830 回答
0

所以你想用div做一张桌子?:)

好的,它必须是这样的:

<div style="float:left; width:20%;"></div>
<div style="float:left; width:20%;"></div>
<div style="float:left; width:20%;"></div>

这应该是一个 CSS 规则虽然你可能会想要改变每个 div 的宽度

于 2013-06-24T15:09:08.980 回答
0

你可以这样做:

body {                    /* or parent element of below child elements */
    position: relative;
}
.left-col {
    float: left;
    width:25%;
    height:100px;
    background-color:blue;
    position:absolute;
    top:0;
    left: 0;
}
.center-col {
    width: 10%;
    height:100px;
    margin: 0 auto;
    background-color: cornflowerblue;
    text-align:center;
}
.right-col {
    width: 25%;
    height:100px;
    background-color:green;
    text-align: right;
    position:absolute;
    top:0;
    right: 0;
}

工作小提琴

必须注意三个元素的宽度之和不得大于 100%。如果您想为这些元素使用边框,则为每个元素创建子元素并提供position: absolute给它们。像这样的东西:

.childDiv{
    position: absolute;
    top: 2px;                 /* acts as border-top for parent element*/
    bottom: 2px;              /* border-bottom */
    left: 2px;                /* border-left */
    right: 2px;               /* border-right */
    background-color: black;  /* acts as border-color for parent element */
}
于 2013-06-24T15:37:13.800 回答