How can I create a div on my table? I want to drag it into left side and want to insert some text into this div.
can you be more specific? do you want to create a div inside the table or around the table? both are possible and to move the div you may either user position: relative; or position: absolute; can you show the page where you want to put this div
it sounds like you want to position your text using style elements inside of a table element. Just use style elements as normal.
#contentbox { margin-left: auto; margin-right: auto; float: left; display: block; width: 250px; height: 250px; background-image: url(images/contentbox.png); }
divs work within table elements just as they would outside if the position is relative then your div should stay within the table
try this thread too http://forums.digitalpoint.com/showthread.php?t=2100079 or used the code below. change positions according to your need, remove top if you want to use "bottom" and +, - margin-left to change position