Bootstrap 5 테두리 스타일 버튼 예제
view
How to install & setup bootstrap 5
Bootstrap 5 테두리 스타일 버튼 사용 방법
1) 먼저 버튼 요소를 생성하고 .btn 이름을 지정해야 합니다.
2) 그런 다음 배경 및 .text-white 클래스에 .bg-dark를 적용합니다.
3) 다음으로 .border 및 테두리 크기 클래스 border-3을 사용해야 합니다.
4) 마지막으로 border-bottom-0과 같은 테두리 없는 클래스를 사용해야 합니다.
예시
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Bootstrap 5 borders style button example</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" />
</head>
<body>
<button class="border btn border-3 bg-dark text-white border-bottom-0 border-top-0 border-end-0">
Border Button
</button>
<button class="border border-primary btn border-3 bg-dark text-white border-bottom-0 border-top-0 border-end-0">
Border Button
</button>
<button class="border border-success btn border-3 bg-dark text-white border-bottom-0 border-top-0 border-end-0">
Border Button
</button>
<button class="border border-warning btn border-3 bg-dark text-white border-bottom-0 border-top-0 border-end-0">
Border Button
</button>
<button class="border border-info btn border-3 bg-dark text-white border-bottom-0 border-top-0 border-end-0">
Border Button
</button>
<button class="border border-light btn border-3 bg-dark text-white border-bottom-0 border-top-0 border-end-0">
Border Button
</button>
<button class="border border-danger btn border-3 bg-dark text-white border-bottom-0 border-top-0 border-end-0">
Border Button
</button>
</body>
</html>
Reference
이 문제에 관하여(Bootstrap 5 테두리 스타일 버튼 예제), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/frontendshape/bootstrap-5-borders-style-button-example-4khl텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)