CSS에서 연설 거품을 만드는 방법
원래 Wordpress에서 하고 있는 블로그의 약간의 디자인 변경으로 썼지만, 왠지 필요 없게 되었다.
데모는 다음과 같은 느낌.
【데모 디자인】 CSS로 만드는 연설 거품 디자인
html
<p>
<span class="check-point-ballon">
Point
</span>
吹き出しを作成したよ
</p>
css
.check-point-ballon {
background-color: #415cf5;
padding: 9px;
color: white;
border-radius: 9px;
text-align: center;
position: relative;
margin-right: 10px;
}
.check-point-ballon::before {
content: '';
position: absolute;
right: -22px;
border-style: solid;
border-width: 13px;
border-color: transparent transparent transparent #415cf5;
}
Reference
이 문제에 관하여(CSS에서 연설 거품을 만드는 방법), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/Daara_y/items/366171883ded8ad3805d텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)