您的位置:首页 > 其它

box-align,box-pack实现元素垂直底部对齐

2016-06-25 21:25 393 查看
自己写了一个图表样式,利用box-align,box-pack属性end实现了其内部元素垂直底部对齐,在利用该属性前,设置其display属性为box即可。
css代码:
.tubiao-content{width: 90%;margin: auto;}
.tubiao{border-bottom: solid 1px #d0cece; padding-top: 2.4rem;}
.time01 {
position: relative;
float: left;
margin-left:12%;
width: 2.6rem;
/* Firefox */
display:-moz-box;
-moz-box-pack:end;
-moz-box-align:end;

/* Safari、Opera 以及 Chrome */
display:-webkit-box;
-webkit-box-pack:end;
-webkit-box-align:end;

/* W3C */
display:box;
box-pack:end;
box-align:end;
}
@media only screen and (min-width: 300px) and (max-width: 350px) {
.time01 {margin-left:11%;}
}
.time01 li{width: 1.3rem;position: relative;}
.time01 li.time01-red{background: #f08417; height: 7rem;}
.time01 li.time01-green{background: #79bd3f;height: 14rem;}
.time01 li span{position: absolute;font-size: 1.2rem;}
.time01 li.time01-red span{left: -2.2rem;top: -0.5rem;}
.time01 li.time01-green span{left:1.5rem;top: -0.5rem;}
.tubiao-time{position:absolute;font-size: 1.5rem;width: 8rem;bottom: -2.5rem;left: -0.5rem;}
html代码
<div class="tubiao-content">
<div class="tubiao mui-clearfix">
<div class="time01 mui-clearfix">
<li class="time01-red"><span>300</span></li>
<li class="time01-green"><span>500</span></li>
<div class="tubiao-time">0~6点</div>
</div>
<div class="time01 mui-clearfix">
<li class="time01-red"><span>300</span></li>
<li class="time01-green"><span>500</span></li>
<div class="tubiao-time">0~6点</div>
</div>
<div class="time01 mui-clearfix">
<li class="time01-red"><span>300</span></li>
<li class="time01-green"><span>500</span></li>
<div class="tubiao-time">0~6点</div>
</div>
<div class="time01 mui-clearfix">
<li class="time01-red"><span>300</span></li>
<li class="time01-green"><span>500</span></li>
<div class="tubiao-time">0~6点</div>
</div>
</div>

</div>
效果如下:


内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: