/* Bubble with an isoceles triangle
------------------------------------------ */
.triangle-isosceles {
position:relative;
padding:15px;
margin:1em 0 3em;
color:#000;
background:#f3961c;
/* css3 */
-moz-border-radius:10px;
-webkit-border-radius:10px;
border-radius:10px;
background:-moz-linear-gradient(top, #f9d835, #f3961c);
background:linear-gradient(top, #f9d835, #f3961c);
}
/* creates triangle */
.triangle-isosceles:after {
content:"\00a0";
display:block; /* reduce the damage in FF3.0 */
position:absolute;
z-index:-1;
bottom:-30px;
left:50px;
width:0;
height:0;
border-width:15px 15px;
border-style:solid;
border-color:#f3961c transparent transparent;
}
Support: Firefox 3.5+, Safari 4+, Chrome 4+, Opera 10+, IE8+.
원본 출처 : http://nicolasgallagher.com/pure-css-speech-bubbles/
'프로그래밍 > HTML+CSS+JavaScript' 카테고리의 다른 글
| CSS관련 사이트 (0) | 2010.10.13 |
|---|---|
| javascript window.open 이용한 새창열기 (0) | 2010.10.07 |
| 페이스북 디벨로퍼 사이트 링크 (0) | 2010.10.01 |
| Jquery 드랍 다운메뉴 (0) | 2010.09.29 |
| CSS3도와주는 사이트 (0) | 2010.09.10 |