الصفحة الرئيسية
تحميل الكود
تغيير الألوان
تغيير العرض
تغيير حجم العرض
تشغيل الكود
<!DOCTYPE html> <html> <head> <style> ul { list-style-image: linear-gradient(to left bottom, red, blue); } </style> </head> <body> <h1>List with linear gradient markers</h1> <p>You can set a gradient color as marker for items.</p> <ul> <li>Web designer</li> <li>Front end developer</li> <li>Back end developer</li> </ul> </body> </html>