الصفحة الرئيسية
تحميل الكود
تغيير الألوان
تغيير العرض
تغيير حجم العرض
تشغيل الكود
<!DOCTYPE html> <html> <head> <style> ol { list-style-type: lower-alpha; } ol ol { list-style-type: inherit; } </style> </head> <body> <h1>List style type inherit</h1> <p>the 'inherit' property set the list type like the direct parent list.</p> <ol> <li>Markup languages: <ol> <li>HTML</li> <li>XML</li> </ol> </li> <li>Programming languages: <ol> <li>Javascript</li> <li>PHP</li> <li>Dart</li> </ol> </li> </ol> </body> </html>