我正试图让3个div出现在阵型中的同一条线上:left-centered-right
例如,一个div左对齐,下一个div居中,最后一个右对齐。
有谁知道怎么做?我有2个div左右对齐,但是如果我在中间引入一个居中的div,它会将最右边的div移动到一个新的行上。
答案 0 :(得分: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>
答案 1 :(得分:1)
一种简单的方法是使用任何框架。例如:960gs - &gt; http://960.gs/
使用此框架,您可以在页面中设置列。示例:http://960.gs/demo.html
答案 2 :(得分: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;
}
}
伪造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%;
}
浮动和显示:表已经讨论过了:)
答案 3 :(得分: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的宽度
答案 4 :(得分: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;
}
<强> Working Fiddle 强>
必须注意三种元素的宽度之和不得大于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 */
}