Add a rounded border to the top-left corner of a div element:
document.getElementById("myDIV").style.borderTopLeftRadius = "25px";
Try it Yourself »
The borderTopLeftRadius property sets or returns the shape of the border of the top-left corner.
Tip: This property allow you to add rounded borders to elements!
Property | |||||
---|---|---|---|---|---|
borderTopLeftRadius | Yes | 9.0 | Yes | Yes | Yes |
Return the borderTopLeftRadius property:
object.style.borderTopLeftRadius
Set the borderTopLeftRadius property:
object.style.borderTopLeftRadius
= "length|
% [
length|
%]|initial|inherit"
Note: The two length or percentage values of the border-top-left-radius properties define the radii of a quarter ellipse that defines the shape of the corner of the outer border edge. The first value is the horizontal radius, the second the vertical radius. If the second value is omitted it is copied from the first. If either length is zero, the corner is square, not rounded. Percentages for the horizontal radius refer to the width of the border box, whereas percentages for the vertical radius refer to the height of the border box.
Value | Description |
---|---|
length | Defines the shape of the top-left corner |
% | Defines the shape of the top-left corner in % |
initial | Sets this property to its default value. Read about initial |
inherit | Inherits this property from its parent element. Read about inherit |
Default Value: | 0 |
---|---|
Return Value: | A String, representing the border-top-left-radius property of an element |
CSS Version | CSS3 |
CSS reference: border-top-left-radius property
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!