گرادیانت خطی - مورب
بازگشت به صفحه اصلی
بازگشت به صفحه مقاله
دو ستونی
دو سطری
اجرای کد RUN »
<!DOCTYPE html> <html> <head> <style> #grad1 { height: 200px; background: red; /* برای مرورگر هایی که از گرادیانت پشتیبانی نمی کنند */ background: -webkit-linear-gradient(left top, red, yellow); /* For Safari 5.1 to 6.0 */ background: -o-linear-gradient(bottom right, red, yellow); /* For Opera 11.1 to 12.0 */ background: -moz-linear-gradient(bottom right, red, yellow); /* For Firefox 3.6 to 15 */ background: linear-gradient(to bottom right, red, yellow); /* Standard syntax (must be last) */ } </style> </head> <body dir="rtl"> <h3>گرادیانت خطی - مورب</h3> <p>این گرادیانت خطی از بالا چپ شروع می شود. از قرمز شروع شده و به زرد تغییر می یابد :</p> <div id="grad1"></div> <p><strong>نکته :</strong> Internet Explorer 9 و نسخه های قبل از آن از گرادیانت پشتیبانی نمی کنند.</p> </body> </html>