CSS에서 칸방과 같은 제목 만들기
실현하고 싶은 것
구현 방법
<h2 class="headline">見出し</h2>
/* 1.カンバンの板 */
.headline {
background-color: #ec685b;
border-radius: 6px;
box-shadow: 0 -2px 0 #f0a39b;
color: #fff;
display: inline-block;
font-size: 16px;
margin: 0 0 2em;
padding: 0.5em 1em;
position: relative;
}
/* 2.カンバンの棒 */
.headline::before,
.headline::after {
border-left: 2px solid #000;
border-right: 2px solid #000;
content: '';
display: block;
left: 10%;
position: absolute;
width: 80%;
}
.headline::before {
top: -5px;
height: 4px;
}
.headline::after {
bottom: -12px;
height: 12px;
}
<h2 class="headline">見出し</h2>
/* 1.カンバンの板 */
.headline {
background-color: #ec685b;
border-radius: 6px;
box-shadow: 0 -2px 0 #f0a39b;
color: #fff;
display: inline-block;
font-size: 16px;
margin: 0 0 2em;
padding: 0.5em 1em;
position: relative;
}
/* 2.カンバンの棒 */
.headline::before,
.headline::after {
border-left: 2px solid #000;
border-right: 2px solid #000;
content: '';
display: block;
left: 10%;
position: absolute;
width: 80%;
}
.headline::before {
top: -5px;
height: 4px;
}
.headline::after {
bottom: -12px;
height: 12px;
}
간단하기 때문에 꼭 해보세요.
Reference
이 문제에 관하여(CSS에서 칸방과 같은 제목 만들기), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/nouka/items/8a80c5cd0380860613a1텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)