-moz-column-gap property | -webkit-column-gap property
-moz-column-gap: | ||||||
-webkit-column-gap: |
Specifies the amount of space between columns.
JavaScript page for this property: MozColumnGap | webkitColumnGap. You can find other example(s) there. |
Possible values:
One of the following values:
The width of the gap in length units. For the supported length units, see the length page. | |||||||
Takes the value of this property from the computed style of the parent element. |
Default: 0.
Example HTML code 1:
This example illustrates the use of the -moz-column-gap and the -webkit-column-gap properties:
|
||||
<head> <style> .example { -moz-column-width: 10em; -webkit-column-width: 10em; -moz-column-gap: 4em; -webkit-column-gap: 4em; } </style> </head> <body> <div class="example"> You can specify the space between columns with the -moz-column-gap and the -webkit-column-gap properties. </div> </body> |
||||
|
||||
Did you find this example helpful?
|
Supported by tags:
a, abbr, acronym, address, b, bdo, big, blink, blockQuote, body, caption, center, cite, code, dd, del, dfn, dir, div, dl, dt, em, fieldSet, font, form, H1, H2, H3, H4, H5, H6, html, i, ins, isIndex, kbd, label, legend, li, marquee, menu, ol, p, pre, s, samp, small, span, strike, strong, sub, sup, table, td, textArea, th, tt, u, ul, var, q, xmp
Related pages:
External links:
User Contributed Comments