You are here: Reference > JavaScript > client-side > style handling > properties > browser specific extensions > MozBorderRadiusBottomleft
MozBorderRadiusBottomleft style property | webkitBorderBottomLeftRadius style property
MozBorderRadiusBottomleft | ||||||
webkitBorderBottomLeftRadius |
Sets or retrieves the rounding of the lower left corner of the border.
Syntax:
You can find the related objects in the Supported by objects section below.
MozBorderRadiusBottomleft: | This property is read/write. |
webkitBorderBottomLeftRadius: | This property is read/write. |
CSS page for this property: -moz-border-radius-bottomleft |
Possible values:
The type of this property is string.
One of the following values:
Takes the value of this property from the computed style of the parent element. | |||||||
The radius of the bottom-left border in length units. For the supported length units, see the length page. | |||||||
The radius is the specified percentage of the width of the object. |
Default: 0.
Example HTML code 1:
This example illustrates the use of the -moz-border-radius-bottomleft and the -webkit-border-bottom-left-radius properties:
|
||||
<head> <style> .example { border: 3px solid red; -moz-border-radius-bottomleft: 30px; -webkit-border-bottom-left-radius: 30px; } </style> </head> <body> <div class="example"> Border with bottom-left rounded corner </div> </body> |
||||
|
||||
Did you find this example helpful?
|
Example HTML code 2:
This example illustrates the use of the MozBorderRadiusBottomleft and webkitBorderRadiusBottomleft properties in JavaScript:
|
||||
<head> <style> .example { border: 3px solid red; -moz-border-radius-bottomleft: 30px; } </style> <script type="text/javascript"> function ChangeBorderColors () { var div = document.getElementById ("myDiv"); var input = document.getElementById ("myInput"); if ('MozBorderRadiusBottomleft' in div.style) { div.style.MozBorderRadiusBottomleft = input.value + "px"; } else if ('webkitBorderBottomLeftRadius' in div.style) { div.style.webkitBorderBottomLeftRadius = appType; } else { alert ("Your browser doesn't support this example!"); } } </script> </head> <body> <div class="example" id="myDiv"> Border with rounded corners </div> <input id="myInput" type="text" value="10" /> <button onclick="ChangeBorderColors ();">Change bottom-left border radius!</button> </body> |
||||
|
||||
Did you find this example helpful?
|
Supported by objects:
CSSStyleDeclaration, htmlElement.style
HTML elements:
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:range, input:reset, input:search, input:submit, input:text, ins, isindex, kbd, label, legend, li, marquee, menu, object, ol, optgroup, option, p, pre, q, s, samp, select, small, span, strike, strong, sub, sup, table, tbody, td, textarea, tfoot, th, thead, tt, u, ul, var, xmp
Related pages:
MozBorderBottomColors
MozBorderEnd
MozBorderEndColor
MozBorderEndStyle
MozBorderEndWidth
MozBorderLeftColors
MozBorderRadius
MozBorderRadiusBottomright
MozBorderRadiusTopleft
MozBorderRadiusTopright
MozBorderRightColors
MozBorderStart
MozBorderStartColor
MozBorderStartStyle
MozBorderStartWidth
MozBorderTopColors
border
borderBottom
borderBottomColor
borderBottomStyle
borderBottomWidth
borderColor
borderLeft
borderLeftColor
borderLeftStyle
borderLeftWidth
borderRight
borderRightColor
borderRightStyle
borderRightWidth
borderStyle
borderTop
borderTopColor
borderTopStyle
borderTopWidth
borderWidth
MozBorderEnd
MozBorderEndColor
MozBorderEndStyle
MozBorderEndWidth
MozBorderLeftColors
MozBorderRadius
MozBorderRadiusBottomright
MozBorderRadiusTopleft
MozBorderRadiusTopright
MozBorderRightColors
MozBorderStart
MozBorderStartColor
MozBorderStartStyle
MozBorderStartWidth
MozBorderTopColors
border
borderBottom
borderBottomColor
borderBottomStyle
borderBottomWidth
borderColor
borderLeft
borderLeftColor
borderLeftStyle
borderLeftWidth
borderRight
borderRightColor
borderRightStyle
borderRightWidth
borderStyle
borderTop
borderTopColor
borderTopStyle
borderTopWidth
borderWidth
External links:
-moz-border-radius-bottomleft (Mozilla Developer Center)
-webkit-border-bottom-left-radius (Safari Reference Library)
border-radius (W3C)
-webkit-border-bottom-left-radius (Safari Reference Library)
border-radius (W3C)
User Contributed Comments