0

Is it possible in HTML 4 to make a table td cell have a dotted background?

codeg
  • 333
  • 1
  • 6
  • 21
  • 3
    possible duplicate of [CSS - CSS3 pixelate dot background](http://stackoverflow.com/questions/13607117/css-css3-pixelate-dot-background) – Hashem Qolami Aug 22 '14 at 17:39

1 Answers1

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