Ctrl_Alt_Defeat
Ctrl_Alt_Defeat

Reputation: 4009

jQuery Table styling with a title

I have a jQuery table which renders as below:

enter image description here

The markup is below.

       <table class="ui-widget-content" style="width: 565px; height: 80px; margin-top: 10px;">
        </table>

How can I break the table border so that it encloses what the table is about - so I have mocked up in the below Image what I would like it to be like.

enter image description here

Upvotes: 0

Views: 67

Answers (1)

Reinstate Monica Cellio
Reinstate Monica Cellio

Reputation: 26143

Use <fieldset> and <legend> with a table inside the fieldset...

http://www.w3schools.com/tags/tryit.asp?filename=tryhtml_fieldset

Upvotes: 4

Related Questions