css3 box-orient box-pack box-align

1. box-pack 属性规定当框大于子元素的尺寸,在何处放置子元素。(水平方向)

    box-pack: start|end|center|justify;

2. box-align 属性规定如何对齐框的子元素。(垂直方向)

    box-align: start|end|center|baseline|stretch;

3. box-orient 属性规定框的子元素应该被水平或垂直排列。

    box-orient: horizontal|vertical|inline-axis|block-axis|inherit;

你可能感兴趣的:(css3,box-pack,box-orient)