Javascript examples for CSS Style Property:borderTopLeftRadius
The borderTopLeftRadius property sets or gets the radii for border top-left corner.
Value | Description |
---|---|
length | radii in length unit |
% | radii in percentage |
initial | Sets this property to its default value. |
inherit | Inherits this property from its parent element. |
Item | Value |
---|---|
Default Value: | 0 |
Return Value: | A String, representing the border-top-left-radius property of an element |
CSS Version | CSS3 |
Set a rounded border to the top-left corner of a div element:
<!DOCTYPE html> <html> <head> <style> #myDIV {/* w w w. j av a 2 s . c om*/ border: 1px solid black; width: 300px; height: 300px; } </style> </head> <body> <button onclick="myFunction()">Test</button> <div id="myDIV"> <h1>Hello</h1> </div> <script> function myFunction() { document.getElementById("myDIV").style.borderTopLeftRadius = "25px"; } </script> </body> </html>