30
loading...
This website collects cookies to deliver better user experience
<div class="message-box"></div>
.message-box {
width: 100px; /* Just for demo purpose */
height: 100px; /* Just for demo purpose */
background-color: #fff;
border: 1px solid #E6E8EB;
box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.08);
position: relative;
}
::before
. Let's do it..message-box::before {
content: "";
width: 0;
height: 0;
border-left: 5px solid transparent;
border-right: 5px solid transparent;
border-bottom: 5px solid #E6E8EB;
}
::after
..message-box::after {
content: "";
width: 0;
height: 0;
border-left: 5px solid transparent;
border-right: 5px solid transparent;
border-bottom: 5px solid #fff;
position: absolute;
top: -5px;
right: 10px;
}
.message-box::after {
content: "";
width: 0;
height: 0;
border-left: 4px solid transparent;
border-right: 4px solid transparent;
border-bottom: 4px solid #fff;
position: absolute;
top: -3.8px;
right: 11px;
}
top
and right
values to achieve this results:.message-box {
width: 100px; /* Just for demo purpose */
height: 100px; /* Just for demo purpose */
background-color: #fff;
border: 1px solid #E6E8EB;
box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.08);
position: relative;
}
.message-box::before,
.message-box::after {
content: "";
width: 0;
height: 0;
position: absolute;
}
.message-box::before {
border-left: 5px solid transparent;
border-right: 5px solid transparent;
border-bottom: 5px solid #E6E8EB;
top: -5px;
right: 10px;
}
.message-box::after {
border-left: 4px solid transparent;
border-right: 4px solid transparent;
border-bottom: 4px solid #fff;
top: -3.8px;
right: 11px;
}