How to make foo
invisible using CSS (CSS3 if needed) while keeping bar
and fizz
visible?
<table>
<tr>
<td>
<textarea>bar</textarea>
<input type='button' title='fizz' />
foo
</td>
</tr>
</tbody>
Making foo
in the same color as background is acceptable, but the trick is - background is an image, hence - foo
must be transparent instead of solid color.
JavaScript isn't an option either.
Changing HTML is not an option either.
Any ideas?