|
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() |
Background images and colourThis is a discussion on Background images and colour within the Coding Tutorials forums. Topic: Welcome, today we will be adding background images and tutorials. Code: body{ background-image: url('picture.png') } This sets the ... |
![]() |
![]() |
|
![]() |
LinkBack | Thread Tools | ![]() | Display Modes | ![]() |
|
|
#1 (permalink) |
|
Welcome, today we will be adding background images and tutorials.
Code:
body{
background-image:
url('picture.png')
}
Now for setting a background color Code:
<style type=text/css>
body{
background-color:black;
}
</style>
To repeat a background image use Code:
<style type='text/css'>
body
{
background-image:
url('picture.png');
background-repeat: repeat
}
</style>
|
|
|
|
|