您的位置:首页 > Web前端 > CSS

css3 flex

2016-07-29 16:52 417 查看
//让第二个元素的宽度为其他元素的三倍:
div:nth-of-type(1) {flex-grow: 1;}
div:nth-of-type(2) {flex-grow: 3;}
div:nth-of-type(3) {flex-grow: 1;}

//让第二个元素收缩到其他元素的三分之一:
div:nth-of-type(2) {flex-shrink: 3;}

//设置第二个弹性盒元素的初始长度为 80 像素:
div:nth-of-type(2) {flex-basis: 80px;}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: