Stub
This article is a stub. Please help the wiki by coding it. Spamming and vandalism is not considered an improvement and will result in discipline, up to, and including a permanent block.
The CSS -moz-column-width Mozilla extension property suggests an optimal column width. The actual column width may be wider (to fill the available space), or narrower (only if the available space is smaller than the specified column width). Safari supports the -webkit-column-width property.
Values[]
| Value | Description |
|---|---|
<length> |
Specifies a length value for the width of the column. Values must be greater than 0. Examples of lengths are px, cm, etc.
|
CSS example:
.content-box {
border: 10px solid #000000;
-moz-column-width: 300px;
}
