الصفحة الرئيسية
تحميل الكود
تغيير الألوان
تغيير العرض
تغيير حجم العرض
تشغيل الكود
<!DOCTYPE html> <html> <head> <style> p::after { content: url(/tutorials/css/before-and-after/checkmark.png); display: inline-block; vertical-align: middle; margin-left: 5px; } </style> </head> <body> <h1>Insert an image after the content</h1> <p>We use the after selector to insert an image after the content.</p> <p>We choose a small image that's why we don't need to change its size.</p> </body> </html>