الصفحة الرئيسية
تحميل الكود
تغيير الألوان
تغيير العرض
تغيير حجم العرض
تشغيل الكود
<!DOCTYPE html> <html> <head> <style> .far-words { word-spacing: 8px; } .close-words { word-spacing: -2px; } </style> </head> <body> <h1>CSS word-spacing</h1> <p class="far-words">The characters are far from each other.</p> <p class="close-words">The characters are close to each other.</p> </body> </html>