Set background image and repeat separately : background repeat « CSS « HTML / CSS

Home
HTML / CSS
1.CSS
2.CSS Controls
3.Form
4.IE Firefox
5.Layout
6.Marquee Attributes
7.Meta Tags
8.Microsoft Attributes
9.Object
10.Reference
11.Style Basics
12.Tags
13.Templates
14.XML
HTML / CSS » CSS » background repeat 
Set background image and repeat separately
  

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
  "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Set background image and repeat separately</title>
<style type="text/css">
span.initcap {
 display: none;
}

{
 line-height: 1em;
 background-image: url(initcap-o.gif);
 background-repeat: no-repeat;
 text-indent: 35px;
 padding-top: 45px;
}
</style>
</head>

<body>
  <p><span class="initcap">O</span>nline. This is a test. 
  This is a test. This is a test. This is a test. This is a test. 
  This is a test. This is a test. This is a test. This is a test. 
  This is a test. This is a test. This is a test. </p>
</body>
</html>

   
  
Related examples in the same category
1.The background-repeat Property
2.'background-repeat' Example
3.background-repeat: repeat-y
4.background-repeat: repeat-x
5.background-repeat: no-repeat
6.background-repeat: repeat-x;
7.background-repeat: repeat-y;
8.background-repeat: no-repeat;
9.background-repeat: repeat;
10.background-repeat using repeat-y
11.background-repeat using no-repeat
12.background-repeat: no repeat
13.background-repeat: repeat x
14.background-repeat: repeat y
15.background-repeat: no-repeat
16.Set background repeat: repeat-x
17.background-repeat:repeat-y
18.background-repeat:repeat
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.