how can i use img repeat-x and y in html?
Answers
Answered by
0
<HTML>
<HEAD>
<TITLE> BACKGROUND SCREEN </TITLE>
</HEAD>
<BODY BACKGROUND="C:\WINDOWS\PAINT.GIF">
<BODY BACKGROUND="C:\WINDOWS\PAINT.GIF">
</BODY>
</HTML>
<HEAD>
<TITLE> BACKGROUND SCREEN </TITLE>
</HEAD>
<BODY BACKGROUND="C:\WINDOWS\PAINT.GIF">
<BODY BACKGROUND="C:\WINDOWS\PAINT.GIF">
</BODY>
</HTML>
Answered by
1
Repeat x makes background image to be repeated to x-axis and Repeat Y to Y axis
<table style="background-image:url(/images/pattern1.gif); background-repeat: repeat-y;">
<tr><td> This table has background image set which will repeat vertically. </td></tr>
</table>
.......................................................................................................................
<table style="background-image:url(/images/pattern1.gif); background-repeat: repeat-x;"> <tr><td> This table has background image set which will repeat horizontally. </td></tr> </table>
<table style="background-image:url(/images/pattern1.gif); background-repeat: repeat-y;">
<tr><td> This table has background image set which will repeat vertically. </td></tr>
</table>
.......................................................................................................................
<table style="background-image:url(/images/pattern1.gif); background-repeat: repeat-x;"> <tr><td> This table has background image set which will repeat horizontally. </td></tr> </table>
nandhinimouli:
If u find my answer to best mark me as brainlest answer
Similar questions