CSS에서는 "border-radius" 속성을 사용하여 버튼을 올바른 각도로 설정할 수 있습니다. "{border-radius:0%;}" 또는 "{border-radius:0px;"만 추가하면 됩니다. }" 스타일을 버튼 요소에 추가합니다. .
이 튜토리얼의 운영 환경: Windows7 시스템, CSS3&&HTML5 버전, Dell G3 컴퓨터.
CSS에서 버튼을 직각으로 설정하는 방법
CSS에서는 border-radius 속성을 사용하여 요소의 둥근 테두리를 설정할 수 있습니다.
border-radius: 1-4 length|% / 1-4 length|%;
주의해야 할 점은:
length는 둥근 모서리의 모양을 정의하는 데 사용되며 %는 둥근 모서리의 모양을 백분율로 정의하는 데 사용됩니다.
버튼 요소에는 기본적으로 둥근 모서리가 있습니다.
버튼을 올바른 각도로 설정하려면 "border-radius:0px;" 또는 "border-radius:0%"만 추가하면 됩니다. "버튼 요소에 ;" 스타일이면 충분합니다.
샘플 코드는 다음과 같습니다.
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv="X-UA-Compatible" content="ie=edge"> <title>Document</title> </head> <style> button{ border-radius:0%; } </style> <body> <button>123</button> </body> </html>
또는 다른 형식:
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv="X-UA-Compatible" content="ie=edge"> <title>Document</title> </head> <style> button{ border-radius:0px; } </style> <body> <button>123</button> </body> </html>
위 두 가지 방법의 출력 결과는 동일합니다.
더 많은 프로그래밍 관련 지식을 보려면 프로그래밍 비디오를 방문하세요! !
위 내용은 CSS에서 버튼을 직각으로 설정하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!