Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- 별표시
- 말풍선 그리기
- 카운트 증가
- checkbox readonly
- 보이스오버
- 문자 위치
- radio readonly
- 특정요소제외
- 특정태그제외
- 스크립트 시계
- 자바스크립트
- tolowercase
- css 말풍선
- 문자열
- css not
- not 선택자
- 문자열 추출
- JS
- 세자리 콤마
- SubString
- Replace
- 천단위 나누기
- 콤마 추가
- mac 전체화면 보기
- mac 전체화면 닫기
- 문자열 함수
- 숫자 증가
- touppercase
- JavaScript
- mac 바탕화면 보기
Archives
- Today
- Total
나의 IT Note
css 말풍선 그리기 본문
말풍선 그리기
이미지를 사용하여 말풍선을 적용할 수 있지만 말풍선의 데이터에 따라 디자인이 깨지지 않으면서 반영이 되어야 하기에 css를 통해 말풍선을 그리는 게 효과적이다.
- 보더 컬러를 수정하여 말풍선 색상을 변경할 수 있다.
- 보더 값을 적절하게 변경하면 여러모양의 말풍선 꼭지점을 만들 수 있다.
- position 속성의 top left를 사용하여 말풍선의 꼭지점을 원하는 위치로 옮길 수 있다.
말풍선
.speech-bubble {
position:relative;
width:200px;
padding:20px;
background-color:#666;
border-radius:4px;
color:#fff;
}
.speech-bubble.left:after {
content:'';
position:absolute;
top:50%;
left:-16px;
border-right:16px solid #666;
border-top:10px solid transparent;
border-bottom:10px solid transparent;
transform:translateY(-50%);
}
.speech-bubble.right:after {
content:'';
position:absolute;
top:50%;
right:-16px;
border-left:16px solid #666;
border-top:10px solid transparent;
border-bottom:10px solid transparent;
transform:translateY(-50%);
}
.speech-bubble.top:after {
content:'';
position:absolute;
top:-8px;
left:50%;
border-bottom:8px solid #666;
border-left:16px solid transparent;
border-right:16px solid transparent;
transform:translateX(-50%);
}
.speech-bubble.bottom:after {
content:'';
position:absolute;
left:30px;
bottom:-8px;
border-left:16px solid transparent;
border-right:16px solid transparent;
border-top:8px solid #666;
}
결과물
왼쪽 말풍선
오른쪽 말풍선
위 말풍선
아래 말풍선
반응형
'CSS' 카테고리의 다른 글
css로 삼각형 그리기 (0) | 2023.12.19 |
---|---|
[CSS] :not() 가상 클래스(의사 클래스) (0) | 2021.09.06 |
[CSS] :first-child() :first-of-type 가상 클래스(의사 클래스) (0) | 2021.08.30 |
[CSS] :only-child :only-of-type 가상 클래스(의사 클래스) (0) | 2021.08.13 |
[CSS] :nth-child :nth-of-type 가상 클래스(의사 클래스) (0) | 2021.08.11 |
Comments