الصفحة الرئيسية
تحميل الكود
تغيير الألوان
تغيير العرض
تغيير حجم العرض
تشغيل الكود
<!DOCTYPE html> <html> <head> <style> p::after { content: 'Done'; display: inline-block; background: lightseagreen; color: white; font-size: 13px; padding: 2px 6px; margin-left: 5px; border-radius: 4px; } </style> </head> <body> <h1>Customize the after content</h1> <p>We use the after selector to insert content after original content.</p> <p>We customize the inserted content and make it look better.</p> </body> </html>