Foreground color: the 'color' property The color property describes the foreground color of an element. Sample code is given below copy and try it out... h1 { color: #990099; } h3{ color: #999999; } p { color: #990099; } 'background-color' property The background-color property describes the background color of elements. Sample code is given below copy and try it out... h1 { background-color: #990099; } h3{ background-color: #999999; } p { background-color: #990099; } Background images [background-image] The CSS property background-image is used to insert a background image. Sample code is given below copy and try it out... body { background-color: #FFCC66; background-image: url("016.jpg"); } Repeat background image [background-repeat] This property describes whether background image has to repeat or not,because if given by default it will repeat horizontally. background-repeat: repeat - image will be repea...
A blog where you can find all codes for Android, Corona, Basic tutorials, Interview questions and more...