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

CSS로 텍스트 버튼의 스타일을 지정하는 방법은 무엇입니까?

<시간/>

다음은 CSS로 텍스트 버튼의 스타일을 지정하는 코드입니다 -

예시

<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<style>
button {
   border: none;
   color: white;
   font-weight: bolder;
   padding: 20px;
   font-size: 18px;
   cursor: pointer;
   border-radius: 6px;
}
.Success {
   color: #4caf50;
}
.Success:hover {
   background: #e7e7e7;
}
.Info {
   color: #2196f3;
}
.Info:hover {
   background: #e7e7e7;
}
.Warning {
   color: #ff9800;
}
.Warning:hover {
   background: #e7e7e7;
}
.Danger {
   color: #f44336;
}
.Danger:hover {
   background: #e7e7e7;
}
.Default {
   color: black;
}
.Default:hover {
   background: #e7e7e7;
}
</style>
</head>
<body>
<h1>Text 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>

출력

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

CSS로 텍스트 버튼의 스타일을 지정하는 방법은 무엇입니까?