Whenever I try to create an angle between two borders, I end up with a jagged (pixeled) line.
Take a look at the code snippet below:
<div id="example"></div>
#example:before{
content: "";
position: relative;
width: 0;
height: 0;
left: 0;
bottom: -40px;
border-top: 20px solid black;
border-left: 470px solid red;
}
Check out this fiddle for demonstration: http://jsfiddle.net/pan1cmode/bQYU7/2/
Does anyone have suggestions on how to make the angle smooth?