Sử dụng linear-gradient () để thêm góc trên các gradient tuyến tính. Bạn có thể thử chạy mã sau để triển khai mã này nhằm đặt các góc là 0, 90 và -90 độ
Ví dụ
<!DOCTYPE html> <html> <head> <style> #demo1 { height: 100px; background: linear-gradient(0deg, orange, blue); } #demo2 { height: 100px; background: linear-gradient(90deg, orange, blue); } #demo3 { height: 100px; background: linear-gradient(-90deg, orange, blue); } </style> </head> <body> <h2>Linear Gradients</h2> <div id = "demo1">0 degree</div><br> <div id = "demo2">90 degrees</div><br> <div id = "demo3">-90 degrees</div> </body> </html>