본문 바로가기
내마음대로만들어보자/HTML

background url

by 소농민! 2022. 4. 9.
728x90

1. background css 속성

  - background-color     

더보기

<style>

    body { background-color: lightblue; }

    h1 { background-color: rgb(255,128,0); }

    p { background-color: #FFFFCC; }

</style>

  - background-image

더보기

 <style>

    body { background-image: url("/examples/images/img_background_good.png"); }

</style>

  - background-repeat

더보기

<style>

    body background-image: url("/examples/images/img_man.png"); background-repeat: repeat-x; }

</style>

  - background-position

더보기

<style>

    body {

        background-image: url("/examples/images/img_man.png");

        background-repeat: no-repeat;

        background-position: top right;   

        background-position: 100px 200px;    //직접적인 수치로 명시도 가능    

    }

</style>

  - background-attachment

더보기

<style>

    body {

        background-image: url("/examples/images/img_man.png");

        background-repeat: no-repeat;

        background-position: left bottom;

        background-attachment: fixed;

    }

</style>

- background 속성 한번에 작성하기 

더보기

<style>

    body background: #FFCCCC url("/examples/images/img_man.png") no-repeat left bottom fixed; }

</style>