tags:

views:

57

answers:

2

I'm relatively new with HTML and am creating a website that plans to use a list comparable to the Windows Explorer 'Show as Details' option.

I'm sure tables have this ability and are even made to implement exactly that however playing around with them I can't seem to get them to work as I'd expect. Google then fails to give me any good resources.

You guys know any?

+2  A: 

In the absence of a specific question - try the w3schools website. There a plenty of examples of basic table usage on there, and a quick try-it facility.

Brabster
+1  A: 

A table in HTML can be quite simple with only a few tags or more complicated. A simple table could have just the opening and closing table tags and then inside a set of table row tags (tr) and another of table data tags (td). But if you've been experimenting with them a bit you probably want more advanced tables. Since I'm not entirely sure what you're looking for try the W3C Schools site like Brabster said: (http://www.w3schools.com/). Go to the HTML section and look at the tables category. Sorry I can't be more helpful, could you please be a little more specific with the problem you're having?

Blake