Shade on HTML - CSS -
i have website on localhost , i'm using html design little bit. i've seen on internet how put css in html shade in background, doesn't work on website...
do know how works ? thanks
try code
<!doctype html> <html> <head> <style> body { height: 200px; background: -webkit-repeating-linear-gradient(red, yellow 10%, green 20%); background: -o-repeating-linear-gradient(red, yellow 10%, green 20%); background: -moz-repeating-linear-gradient(red, yellow 10%, green 20%); background: repeating-linear-gradient(red, yellow 10%, green 20%); } </style> </head> <body> </body> </html>
Comments
Post a Comment