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

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


다음은 CSS를 사용하여 버튼 그룹을 만드는 코드입니다 −

<!DOCTYPE html>
<html>
<style>
.btnGroup{
   display: inline-block;
   font-size: 0;
   border: 2px solid darkgreen;
   box-shadow: 5px 10px 18px rgb(55, 173, 39);
}
button{
   float: left;
   margin:0px;
   border:none;
   padding: 15px;
   font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
   font-weight: bold;
   font-size: 20px;
}
button:not(:last-child){
   border-right: 2px solid rgb(6, 134, 49);
}
button:hover{
   background:rgb(48, 24, 134);
   box-shadow: 5px 10px 18px rgb(41, 39, 173);
   color:white;
}
</style>
<body>
<h1>Button Group</h1>
<div class="btnGroup">
<button>Facebook</button>
<button>Twitter</button>
<button>LinkedIn</button>
</div>
<h2>Hover over the above button group to see hover effects</h2>
</body>
</html>

출력

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

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

버튼 그룹의 버튼 위에 마우스를 놓을 때 -

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