CSS에서 칸방과 같은 제목 만들기

3758 단어 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;
    }
    
  • 칸반의 판에 해당하는 부분을 작성
  • before, after로 막대에 해당하는 부분 만들기

  • 간단하기 때문에 꼭 해보세요.

    좋은 웹페이지 즐겨찾기