Get Even More Visitors To Your Blog, Upgrade To A Business Listing >>

Backgrounds (Css tutorial)

Tags: background
Hello guys! morning and welcome to this section of my tutorial. In my last tutorial i talked about CSS Measurement Units. So now i want to talk about CSS backgrounds.
This section of my tutorial teaches you how to set backgrounds of various HTML elements. You can set the following background properties of an element:

  • The background-color property is used to set the background color of an element.
  • The background-image property is used to set the background image of an element.
  • The background-repeat property is used to control the repetition of an image in the background.
  • The background-position property is used to control the position of an image in the background.
  • The background-attachment property is used to control the scrolling of an image in the background.
  • The background property is used as a shorthand to specify a number of other background properties.
Set the Background Color
Following is the example, which demonstrates how to set the background color for an element.


This text has a blue background color.


Set the Background Image






This table has background image set.


Repeat the Background Image
The following example demonstrates how to repeat the background image if an image is small. You can use no-repeat value for the background-repeat property if you don't want to repeat an image. In this case, the image will display only once. 
By default the background-repeat property will have a repeat value.

                        background-repeat: repeat;">




This table has background image which repeats multiple times.


The following example which demonstrate how to repeat background image vertically.

                        background-repeat: repeat-y;">




This table has background image set which will repeat vertically.


The following example demonstrate how to repeat the background image horizontally.

                        background-repeat: repeat-x;">




This table has background image set which will repeat horizontally.
 


Set the Background Image Position
The following example demonstrates how to set the background image positioned 150 pixels away from the left side.

                        background-position: 150px;">




This table has background image positioned 150 pixels away from the left.
 


The following example demonstrates how to set the background image positioned 150 pixels away from the left side and 200 pixels down from the top.

                        background-position: 150px  200px;">




This table has background image positioned 150 pixels away from the left and 200 pixels down from the top.
 


Set the Background Attachment
Background attachment determines whether a background image is fixed or  scrolls with the rest of the page.
The following example demonstrates how to set the fixed background image. 

                        background-attachment: fixed;">



This paragraph has a fixed background image.
 

The following example demonstrates how to set the scrolling background image.

                        background-attachment: scroll;">



This paragraph has a scrolling background image.


Shorthand Property
You can use the background property to set all the background properties once. For example:

repeat fixed;">


This paragraph has fixed repeated background image.
 

Alright guys that's it for this tutorial on Cascading Style Sheets backgrounds, feel free to drop your questions in the comment box below.
Don't forget to like our facebook page, also subscribe with us to get our latest tutorials delivered directly to your email. Thanks and bye for now.

Links to previous tutorials on CSSCss Introduction (Css tutorial) ,  Syntax (Css tutorial)  ,  Inclusion (Css tutorial) , Css Measurement Units (Css tutorial)     



This post first appeared on Web Design Tutorialz, please read the originial post: here

Share the post

Backgrounds (Css tutorial)

×

Subscribe to Web Design Tutorialz

Get updates delivered right to your inbox!

Thank you for your subscription

×