CHROME inclined box

A chamfered edge looks bad in Chrome. Firefox is fine. Why?

http://codepen.io/anon/pen/EaxJKv

.rr-left:after { bottom: 0; border-top: 30px solid #2c3e50; border-right: 1050px solid #FFFFFF; } 
+5
source share
1 answer

Try changing the top border of the frame to RGBA (44, 62, 80, 0). This smooths the line: "//" β†’

 border-top: 30px solid rgba(44, 62, 80, 0); 

http://jsfiddle.net/wmvq5uz1/

+1
source

Source: https://habr.com/ru/post/1207043/


All Articles