RE: "How do you write a borderless (invisible) table for external CSS?" Doing it with HTML, rather than CSS is cleaner: <.table border="0" ....> But, if you must use CSS: table.noborders { border: none; } And then in the HTML code: <.table class="noborders" ..> -rt_/)