CSS Background Property
- Get link
- X
- Other Apps
CSS Background
Property
Property |
Value |
Syntax |
background-color |
color | transparent |RGB |
background-color:red; background-color:rgb(70,50,60); |
background-image |
url(“”) | linear-gradient() | radial-gradient() |
background-image:url(“start.png”); background-image:linear-gradient(red,blue); |
background-position |
top center | top left |top right center center
| center left | center right bottom center
| bottom left |bottom right length: (x)px (y)px |
background-position:10px
30px; background-position:top
right; background-position:center; |
background-attachment |
Scroll | fixed | local |
background-attachment:fixed; (default:
scroll) |
background-repeat |
No-repeat | repeat-x | repeat-y| Repeat |
background-repeat:no-repeat;
(default: repeat) background-repeat:repeat-x |
background-size |
Auto | length | cover | contain |
background-size:300px 400px; (width
x height) background-size:auto {default} |
- Get link
- X
- Other Apps
Comments
Post a Comment