CSS Box-Pack Property
CSS 1 |
CSS 2 |
CSS 3 |
|
|
|
|
Description
Specifies how a box packs its contents in the direction of its layout. The effect of this is only visible if there is extra space in the box.
Syntax
box-pack: [value];
Possible values
- start
- end
- center
- justify
Initial Value
start
Applies To
Box elements
Inherited
No
Media
Visual
Example
.class {
box-pack: justify;
}