Mam np. taki kod:
<img src="img/lol.png" />
I jak zrobić, aby obrazek się powtarzał cały czas poziomo, nie zależnie od rozdzielczości...
td { background-image: url("images/3_02.png"); background-repeat: repeat; }
<html> <head> <style type="text/css"> td { background-repeat: repeat; } td.one { background-image: url("images/3_01.png"); } td.two { background-image: url("images/3_02.png"); } </style> </head> <body> <table id="Table_01" width="188" height="37" border="0" cellpadding="0" cellspacing="0"> <tr> </tr> </table> </body> </html>