borderBottomLeftRadius는 요소의 오른쪽 하단 테두리에 둥근 모서리를 추가하는 데 사용됩니다. 왼쪽 하단 모서리에서 테두리 모양을 설정하고 가져올 수 있습니다.
구문
다음은 −
의 구문입니다.borderBottomLeftRadius 속성 설정 -
object.style.borderBottomLeftRadius = "length|% [length|%]|initial|inherit"
값
속성 값은 다음과 같이 설명됩니다 -
Sr.No | 값 및 설명 |
---|---|
1 | 길이 왼쪽 하단 모서리 모양을 정의하기 위해 |
2 | % 백분율로 왼쪽 하단 모서리 모양을 정의합니다. |
3 | 초기 이 속성을 초기 값으로 설정합니다. |
4 | 상속 상위 속성 값을 상속하려면 |
예시
borderBottomLeftRadius 속성의 예를 살펴보겠습니다 -
<!DOCTYPE html> <html> <head> <style> #DIV1{ height: 100px; width: 200px; border: 10px groove orange; padding: 10px; border-bottom-left-radius: 240px 90px; } </style> <script> function changeBottomBorder(){ document.getElementById("DIV1").style.borderBottomLeftRadius="90px 50px"; document.getElementById("Sample").innerHTML="The bottom border left radius is now decreased"; } </script> </head> <body> <div id="DIV1">SOME SAMPLE TEXT</div> <p>Change the above image bottom left border size by clicking the below button</p> <button onclick="changeBottomBorder()">Change Bottom Border</button> <p id="Sample"></p> </body> </html>
출력
이것은 다음과 같은 출력을 생성합니다 -
"하단 테두리 변경" 버튼을 클릭하면 -