초보자를 위한 CSS 버튼
* {
margin: 0px;
padding: 0px;
box-sizing: border-box;
}
먼저 기본 스타일에 대한 CSS 파일에
.btn
클래스를 생성해야 합니다..btn {
padding: 0.5rem 1.5rem;
cursor: pointer;
display: inline-block;
text-decoration: none;
font-weight: 400;
border-style: none;
border-radius: 0.25rem;
}
다음으로
.bg-blue
또는 .bg-primary
중 하나를 선택해야 합니다. 그런 다음 .text-white 클래스를 만듭니다..bg-blue {
background-color: #0000ff;
}
.text-white {
color: #fff;
}
이제 html 파일에서 이 클래스를 사용하십시오.
<button class="text-white btn bg-blue">Button</button>
버튼을 더 만들 수 있습니다.
스타일.css
* {
margin: 0px;
padding: 0px;
box-sizing: border-box;
}
.btn {
padding: 0.5rem 1.5rem;
cursor: pointer;
display: inline-block;
text-decoration: none;
font-weight: 400;
border-style: none;
border-radius: 0.25rem;
}
.bg-red {
background-color: #ff0000;
}
.bg-green {
background-color: #009933;
}
.bg-gray {
background-color: #808080;
}
.bg-blue {
background-color: #0000ff;
}
.bg-yellow {
background-color: #ffff00;
}
.bg-indigo {
background-color: #4b0082;
}
.bg-black {
background-color: #000000;
}
.bg-white {
background-color: #fff;
}
.text-white {
color: #fff;
}
.text-black {
color: #000000;
}
index.html
<button class="text-white btn bg-green">Button</button>
<button class="text-white btn bg-gray">Button</button>
<button class="text-black btn bg-yellow">Button</button>
<button class="text-white btn bg-blue">Button</button>
<button class="text-white btn bg-indigo">Button</button>
<button class="text-black bg-white btn">Button</button>
<button class="text-white bg-black btn">Button</button>
Reference
이 문제에 관하여(초보자를 위한 CSS 버튼), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/frontendshape/css-button-for-beginners-ce4텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)