'background-repeat' Example
<head>
<style>
#myL {background-color:#ffccff;
background-image:url("http://www.java2s.com/style/logo.png");
height:100;
background-repeat:repeat;
}
</style>
</head>
<body>
<div id="myL" style="width:236">Text Text Text Text</div>
</body>
</html>
Related examples in the same category