الصفحة الرئيسية
تحميل الكود
تغيير الألوان
تغيير العرض
تغيير حجم العرض
تشغيل الكود
<!DOCTYPE html> <html> <head> <style> .egypt { background-image: url('/tutorials/css/background/pyramids.png'); background-repeat: no-repeat; background-position: right top; padding-right: 130px; } </style> </head> <body> <h1>Welcome to Egypt</h1> <div class="egypt"> <p>Here we add "no-repeat" to make the background image apears only 1.</p> <p>To make the background image apears at the right and top of the div we "right top" as position.</p> <p>To make the text not apears above the background image we add "130px" padding at the right.</p> </div> </body> </html>