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