One way of doing it is create a background image for watermark (i.e. light colored text on a transparent background) say watermark.png and then use css to put this watermark image as a div background with the following css code
.watermarked-div {background-image:url('watermark.png');background-repeat:repeat;}
This will repeat your watermark across any div that has a class watermarked-div. You can disble repeating with background-repeat:no-repeat