Is this possible via CSS?

I’m trying

tr.classname {
  border-spacing: 5em;
}

to no avail. Maybe I’m doing something wrong?

29 s
29

In the parent table, try setting

border-collapse:separate; 
border-spacing:5em;

Plus a border declaration, and see if this achieves your desired effect.
Beware, though, that IE doesn’t support the “separated borders” model.

Tags:

Leave a Reply

Your email address will not be published. Required fields are marked *