Border around table but not cells

html

Solution

<table style="border:1px solid;">

http://jsfiddle.net/U2e8b/

Problem

Is there a way to display an HTML table with a border around the entire table but not around the cells within it? The table border attribute is deprecated in favor of CSS, but both the border attribute and the suggested CSS replacement outline the individual cells as well as the table.

Original source