Please check out this jsfiddle
As you can see its a round edge box with two triangles BUT the line in the centre dividing both triangles isn’t straight. How can it be made so its straight?
ALSO the top right corner seems to be a bit undecided what colour it is, how can that be sorted?
html:
<div class="css-arrow-multicolor"></div>
css:
.css-arrow-multicolor {
-moz-border-radius: 6px;
border-radius: 6px;
border-color: blue #ECB603 #ECB603 blue;
border-style:solid;
border-width:15px;
width:0;
height:0;
}
I see your problem… right in the middle it’s one pixel off right?
If you use one color for one side and transparent for the other it gives you a straight line. Use two of them to accomplish the same effect.
http://jsfiddle.net/rr4GH/4/