JavaScript에서 왼쪽 상단 모서리의 테두리 모양을 설정하려면 borderTopLeftRadius 재산. 이 속성을 사용하여 테두리 반경을 설정합니다.
예시
다음 코드를 실행하여 JavaScript로 왼쪽 상단 테두리의 모양을 설정하는 방법을 배울 수 있습니다 -
<!DOCTYPE html> <html> <head> <style> #box { border: thick solid gray; width: 300px; height: 200px } </style> </head> <body> <div id="box">Demo Text</div> <br><br> <button type="button" onclick="display()">Change top left border radius</button> <script> function display() { document.getElementById("box").style.borderTopLeftRadius = "20px"; } </script> </body> </html>