다음은 CSS로 윤곽선 버튼의 스타일을 지정하는 코드입니다 -
예시
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<style>
button {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
border: none;
color: white;
font-weight: bolder;
padding: 20px;
font-size: 20px;
cursor: pointer;
border-radius: 6px;
width: 140px;
}
.Success {
border:2px solid #4caf50;
color:#4caf50
}
.Success:hover {
background-color: #46a049;
color:white;
}
.Info {
border:2px solid #2196f3;
color:#2196f3;
}
.Info:hover {
background: #0b7dda;
color:white;
}
.Warning {
border:2px solid #ff9800;
color:#ff9800;
}
.Warning:hover {
background: #e68a00;
color:white;
}
.Danger {
border:2px solid #f44336;
color:#f44336;
}
.Danger:hover {
background: #da190b;
color:white;
}
.Default {
border:2px solid #e7e7e7;
color: black;
}
.Default:hover {
background: #ddd;
}
</style>
</head>
<body>
<h1>Alert Buttons Example</h1>
<button class="Success">Success</button>
<button class="Info">Info</button>
<button class="Warning">Warning</button>
<button class="Danger">Danger</button>
<button class="Default">Default</button>
</body>
</html> 출력
위의 코드는 다음과 같은 출력을 생성합니다 -

버튼 위로 마우스를 가져 가면 버튼 배경색이 표시된 것과 같은 윤곽선과 동일합니다 -
