-moz-margin-end property
Specifies the width of the left or the right margin, depends on the writing direction.
If the writing direction is set to left-to-right, use the margin-right property,
else use the margin-left property for cross-browser compatibility.
Note: Safari and Google Chrome do not support a property named '-webkit-margin-end', but support the -webkit-margin-start property.
JavaScript page for this property: MozMarginEnd. You can find other example(s) there. |
Possible values:
One of the following values:
Default. The sizes of the 'auto' margins are equal. | |||||||
Takes the value of this property from the computed style of the parent element. | |||||||
The width of the margin in length units. For the supported length units, see the length page. | |||||||
The width is the specified percentage of the width of the parent element. |
Default: 0.
Example HTML code 1:
This example illustrates the use of the -moz-margin-end property:
|
||||
<head> <style> .ltr { direction: ltr; border: 2px solid red; -moz-margin-end : 20px; } .rtl { direction: rtl; border: 2px solid red; -moz-margin-end : 20px; } </style> </head> <body> <a style="border: 2px solid green;">previous object</a> <a class="ltr">margin-end: 20px (ltr)</a> <a style="border: 2px solid green;">next object</a> <br /><br /> <a style="border: 2px solid green;">previous object</a> <a class="rtl">margin-end: 20px (rtl)</a> <a style="border: 2px solid green;">next object</a> </body> |
||||
|
||||
Did you find this example helpful?
|
Supported by tags:
a, abbr, acronym, address, applet, b, bdo, big, blink, blockQuote, body, button, caption, center, cite, code, dd, del, dfn, dir, div, dl, dt, em, embed, fieldSet, font, form, H1, H2, H3, H4, H5, H6, hr, html, i, iframe, img, input:button, input:checkbox, input:file, input:image, input:password, input:radio, input:reset, input:submit, input:text, ins, isIndex, kbd, label, legend, li, marquee, menu, object, ol, optGroup, option, p, pre, s, samp, select, small, span, strike, strong, sub, sup, table, tBody, td, textArea, tFoot, th, tHead, tr, tt, u, ul, var
Related pages:
External links:
User Contributed Comments