0
votes
3answers
101 views

CSS Style not reaching edges

On my website, the header is a div tag with a coloured background. The only problem is that it doesn't reach the "edges" of the window (Please see http://manpoints.uk.to/). Any ideas of how to solve ...
5
votes
3answers
7k views

How do I make a CSS triangle with smooth edges?

I have a triangle (JSFiddle) using this CSS: .triangle { width: 0; height: 0; border-top: 0; border-bottom: 30px solid #666699; border-left: 20px solid transparent; ...