Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSS

background shorthand css

/* background shorthand css */
background: blue url(image.jpg) no-repeat scroll 0px 0px;

/* background longhand css */
background-color: blue;
background-image: url(image.jpg);
background-repeat: no-repeat;
background-attachment: scroll;
background-position: 0px 0px;
 
PREVIOUS NEXT
Tagged: #background #shorthand #css
ADD COMMENT
Topic
Name
5+4 =