Computer >> 컴퓨터 >  >> 프로그램 작성 >> CSS

CSS로 알약 버튼을 만드는 방법은 무엇입니까?

<시간/>

다음은 알약 버튼을 만드는 코드입니다 -

예시

<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<style>
button {
   font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande",
"Lucida Sans Unicode", Geneva, Verdana, sans-serif;
   background-color: rgb(193, 255, 236);
   border: none;
   color: rgb(0, 0, 0);
   padding: 10px 20px;
   text-align: center;
   text-decoration: none;
   display: inline-block;
   margin: 4px 2px;
   cursor: pointer;
   font-size: 30px;
   border-radius: 32px;
}
button:hover {
   background-color: #9affe1;
}
</style>
</head>
<body>
<h1>Pill Buttons Example</h1>
<button>Button 1</button>
<button>Button 2</button>
<div></div>
<button>Button 3</button>
<button>Button 4</button>
</body>
</html>

출력

위의 코드는 다음과 같은 출력을 생성합니다 -

CSS로 알약 버튼을 만드는 방법은 무엇입니까?