I am trying to create a popup tooltip that has a triangle arrow on the bottom. The problem is that when the border is dahsed, then the arrow looks like a rotated cube (which it is).
Is there a way to cut the top triangle from it and also cut the bottom border where the triangle is?
Here is my CSS:
<div class="new-field-popup"></div>
.new-field-popup{
position: absolute;
width: 200px;
height: 57px;
padding: 20px;
border-radius: 5px;
top: 10px;
left: 10px;
border: 1px dashed rgb(177, 177, 177);
}
.new-field-popup:after{
content: '';
border: 1px dashed rgb(177, 177, 177);
position: absolute;
left: 110px;
bottom: -10px;
width: 20px;
height: 20px;
transform: rotate(45deg);
}