2
step 1: give your cell a specific id or class. This will be used to identify your cell through css.
le="color: #000000"><?php <td [b]id="mycell"[/b]>
or
le="color: #000000"><?php <td [b]class="mycell"[/b]>
then in style.css add something like this:
le="color: #000000"><?php /* if using 'id' */ #mycell img {border:1px solid #808080} /* if using 'class' */ .mycell img {border:1px solid #808080}
The first style can be read as: any <img> tag decending from
any html element with the
id of 'mycell' should have a 1 pixel solid grey border.
The second is almost the same: any <img> tag decending from
any html element with the
class of 'mycell' should have a 1 pixel solid grey border.
Additional References:
W3Schools CSS SelectorsW3Schools CSS Border Property