Is it possible in HTML 4 to make a table td cell have a dotted background?
Asked
Active
Viewed 698 times
1 Answers
1
Yes, you can e.g. create an image with a dotted background and set it as background image on a td
element. This is possible even in HTML using the background
attribute on a td
tag; it works well, though it is formally non-conforming. So people usually recommend using CSS instead (specifically, the background-image
property or the background
shortcut property).

Jukka K. Korpela
- 195,524
- 37
- 270
- 390