Quantcast
Channel: CSS Style
Viewing all articles
Browse latest Browse all 31

Chapter 2 – CSS Background Properties

$
0
0
Background Properties - sets color, image, repeat, attachment, and position 1) background ——————————— .myDiv{ background: #030000 url(image/myImage.jpg) no-repeat fixed left top; } 2) background-attachment ——————————— background-attachment fixed scroll : default value .myDiv{ background-image:url(image/myImage.jpg); background-attachment: fixed; } 3) background-color ——————————— .myDiv{ background-color: #030000; } 4) background-image ——————————— .myDiv{ background-image:url(image/myImage.jpg); } 5) background-position ————————————– background-position left top [...]

Viewing all articles
Browse latest Browse all 31

Trending Articles