সি.এস.এস এর মাধ্যমে কিভাবে আমরা একটি ওয়েব পেজ এর সম্পূর্ন অংশ জুড়ে Background image সেট করতে পারি?

সি.এস.এস এর মাধ্যমে কিভাবে আমরা একটি ওয়েব পেজ এর সম্পূর্ন অংশ জুড়ে Background image সেট করতে পারি?

Add Comment



  • 3 Answer(s)

    body {
    background-image: url(image location);
    }

    Add Comment

    সি.এস.এস 3 এর background-size: cover; প্রোপার্টি ব্যাবহারের মাধ্যমে আমরা ওয়েব পেজ এর সম্পূর্ন অংশ জুড়ে Background image সেট করতে পারি?

    body {
    background-image: url(image location);
    background-size: cover;
    }

    Add Comment

    of course we can do that easily,
    body{
    background-image:url(image path);
    background-repeat:no repeat;
    background-size:cover;

    }
    we can write this in one line of CSS code.

    body{background-image:url(image location path) norepeat cover;

    Default Answered on 28/04/2018.
    Add Comment



  • Your Answer

    By posting your answer, you agree to the privacy policy and terms of service.