I have this image (attached). I am not a designer but I do not want to use the image in my app. I heard you can come very close to an image using css. Can someone help me wi
If you have Change dimensions to your own taste. This trick is called CSS Triangle. jsFiddle Demo EDIT: Or a quick demo with a transparent arrow - here you basically use different border colors for the tricky borders and a way to move the arrow to the left - I used .magic {
width: 200px;
height: 50px;
}
.magic:before {
content: '.';
float: left;
width: 0;
height: 0;
border-top: 25px solid transparent;
border-left: 25px solid white;
border-bottom: 25px solid transparent;
}
position: relative - so the div's background won't cover what is underneath.