執行 ❯
建立您
自己的
網站
×
更改方向
儲存程式碼
更改主題,深色/淺色
前往 Spaces
<!DOCTYPE html> <html> <head> <style> #grad1 { height: 200px; background-image: linear-gradient(to right, red , blue); } </style> </head> <body> <h3>Linear Gradient - Left to Right</h3> <p>This linear gradient starts at the left. It starts red, transitioning to blue:</p> <div id="grad1"></div> </body> </html>