SoYoung210 / soso-tip

🍯소소한 팁들과 정리, 버그 해결기를 모아두는 레포
24 stars 0 forks source link

[css trick] 묘하게 둥근 모서리를 가진 speech bubble #28

Open SoYoung210 opened 5 years ago

SoYoung210 commented 5 years ago

image

기본적으로 border-radius를 이용합니다.

  &::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -6px;
    width: 0;
    transform: rotate(-45deg);
    height: 0;
    border: 6px solid;
    border-radius: 3px 0px 0px 0px;
    border-color: rgba(11, 12, 12, 0.8) transparent transparent
      rgba(11, 12, 12, 0.8);
    margin-top: -6px;
    margin-right: -6px;
  }