Ok, long story short, i'm a noob, I was using a tag I shouldn't of, so says my programming friend, im using css now, but having trouble getting to work with buttons, any help appreciated
currently what I have
Code:
a
{
position: absolute;
top: 300px;
left: 300px;
}
Code:
<a>
my text buttons & tables here
</a>
it'll move text by itself, but not tables, can anyone help?
Ok, long story short, i'm a noob, I was using a tag I shouldn't of, so says my programming friend, im using css now, but having trouble getting to work with buttons, any help appreciated
currently what I have
Code:
a
{
position: absolute;
top: 300px;
left: 300px;
}
Code:
<a>
my text buttons & tables here
</a>
it'll move text by itself, but not tables, can anyone help?
So basically what yo have here, is any ANCHOR will be absolute-positioned at 300/300? "a" is a 'reserved character', meaning "anchor", such as "<a href="#"></a>"
You want to give the "table" an "id", and position that...
Bookmarks