워드프레스 말풍선 생성기 #2
워드프레스 말풍선을 쉽게 생성할 수 있는 온라인 도구입니다.
다양한 스타일을 선택하고 사용자 정의할 수 있습니다.
워드프레스 말풍선 생성기 #2 사용법
by pengsu
말풍선을 만들어보세요.
텍스트
폰트
말풍선 위치
포인터 위치
모 양
포인터 크기
배경색상
텍스트색상
CSS Code
<style>
.speech-bubble {
position: relative;
background: #39959d;
border-radius: .4em;
}
.speech-bubble:after {
content: '';
position: absolute;
bottom: 0;
left: 50%;
width: 0;
height: 0;
border: 20px solid transparent;
border-top-color: #39959d;
border-bottom: 0;
border-left: 0;
margin-left: -10px;
margin-bottom: -20px;
}
</style>
<div style="">
<div class="speech-bubble">${g_state.텍스트}</div>
</div>