What value in degrees does this linear gradient have?


<html> <head> <style> h1 { background: linear-gradient(45deg,blue, red); padding: 50px; width:200px; height:200px; } body { text-align: center; } </style> </head> <body> <h1>The Diagonal News</h1> </body> </html>]]>
45deg180deg

Make sure to pick 45deg.