Reputation: 333
Is it possible in HTML 4 to make a table td cell have a dotted background?
Upvotes: 0
Views: 795
Reputation: 201598
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).
Upvotes: 1