can anybody tell me how to display a simple table only using Css and Xhtml? where in xhtml onlt <div> is used please pass me the code thank you

you can do that using dom apis.
just use-

var new_elem = document.createElement('tag_name');
var elem=document.getElementById("id");
elem.appendChild(new_elem);

this is just a pointer !!!

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.