CSS
[CSS] new 말풍선 아이콘
힘없는염소
2019. 4. 4. 11:52
.icon {
position: absolute;
width: 25px;
top: 10px;
left: 20px;
font-family: Tahoma, dotum;
color: #fff;
font-size: 11px;
font-weight: bold;
padding: 1px 5px 1px 5px;
text-align: center;
display: inline-block;
height: 16px;
line-height: 16px;
border-radius: 3px;
background: #ff0000;
}
.icon::after {
top: 100%;
left: 50%;
border: solid transparent;
content: " ";
height: 0px;
width: 0px;
position: absolute;
pointer-events: none;
border-color: rgba(255, 74, 74, 0);
border-top-color: #ff0000;
border-width: 4px;
margin-left: -4px;
}
반응형