2
step 1: give your cell a specific id or class. This will be used to identify your cell through css.
<td [b]id="mycell"[/b]>
or
<td [b]class="mycell"[/b]>
then in style.css add something like this:
/* 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
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
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