Old 31st May 2004, 00:53   #1
squakMix
wwwyzzerdd
(Forum King)
 
squakMix's Avatar
 
Join Date: May 2003
Posts: 3,458
Table images in html

Goddamnit. paste this into an html editor,

Quote:
<html>
<body>
<table border = 2 cellpadding=1 cellspacing=0>
<tr>
<td>
<img src = "C:\anything can go here, it doesnt matter\asdasda.bmp">
</td>
</tr>
</table>
</body>
</html>
and look at the bottom. It wont touch the table. Wtf. Why not? How can I fix this!!?
squakMix is offline   Reply With Quote
Old 31st May 2004, 01:05   #2
SSJ4 Gogitta
Followed by Gnomes
(Forum King)
 
SSJ4 Gogitta's Avatar
 
Join Date: Dec 2000
Location: West Virginia Googolplex: 10^10¹°° FB:/SSJ4.DominusDeus DeviantArt: DominusDeus XboX GT: A Wild Meeseeks Playstation 4: DominusDeus
Posts: 7,162
<html>
<body>

<table border="2" cellpadding="0" cellspacing="0">
<tr><td align="center">

<img src="asdasda.bmp">

</td></tr>
</table>

</body>
</html>

SSJ4 Gogitta is offline   Reply With Quote
Old 31st May 2004, 01:31   #3
squakMix
wwwyzzerdd
(Forum King)
 
squakMix's Avatar
 
Join Date: May 2003
Posts: 3,458
whoops, do it with cellpadding = 0.
try it...It doesnt work.
squakMix is offline   Reply With Quote
Old 31st May 2004, 01:43   #4
ryan
not fucked, not quite.
(Forum King)
 
ryan's Avatar
 
Join Date: Feb 2002
Location: Missouri via Tennessee
Posts: 8,813
Send a message via AIM to ryan
Tables.... You're joking right?



www.w3schools.com
ryan is offline   Reply With Quote
Old 31st May 2004, 01:48   #5
squakMix
wwwyzzerdd
(Forum King)
 
squakMix's Avatar
 
Join Date: May 2003
Posts: 3,458
Quote:
Originally posted by idiot
Tables.... You're joking right?

No. and I dont have time to learn otherwise.
squakMix is offline   Reply With Quote
Old 31st May 2004, 01:49   #6
Drunken Master
n00b eater
(Member)
 
Join Date: Nov 2001
Posts: 282
<div> 4 LIFE!
Drunken Master is offline   Reply With Quote
Old 31st May 2004, 01:49   #7
ryan
not fucked, not quite.
(Forum King)
 
ryan's Avatar
 
Join Date: Feb 2002
Location: Missouri via Tennessee
Posts: 8,813
Send a message via AIM to ryan
</div>
ryan is offline   Reply With Quote
Old 31st May 2004, 01:49   #8
SSJ4 Gogitta
Followed by Gnomes
(Forum King)
 
SSJ4 Gogitta's Avatar
 
Join Date: Dec 2000
Location: West Virginia Googolplex: 10^10¹°° FB:/SSJ4.DominusDeus DeviantArt: DominusDeus XboX GT: A Wild Meeseeks Playstation 4: DominusDeus
Posts: 7,162
Hey now, I like tables.

This works for me:

<html>
<body>

<TABLE BORDER="1">
<TR><TD ALIGN="center"><IMG SRC="WHATEVER.EXT"></TD></TR>
</TABLE>


</body>
</html>

SSJ4 Gogitta is offline   Reply With Quote
Old 31st May 2004, 01:53   #9
squakMix
wwwyzzerdd
(Forum King)
 
squakMix's Avatar
 
Join Date: May 2003
Posts: 3,458
odd... That works for me too, but this doesnt:

Quote:
<table border = 1>
<tr>
<td align = center>
<img src = "asdasd.gif">
</td>
</tr>
</table>
thanks....

....


...


..

squakMix is offline   Reply With Quote
Old 31st May 2004, 01:55   #10
squakMix
wwwyzzerdd
(Forum King)
 
squakMix's Avatar
 
Join Date: May 2003
Posts: 3,458
nvm.
squakMix is offline   Reply With Quote
Old 31st May 2004, 01:58   #11
ryan
not fucked, not quite.
(Forum King)
 
ryan's Avatar
 
Join Date: Feb 2002
Location: Missouri via Tennessee
Posts: 8,813
Send a message via AIM to ryan
Attributes go in quotation marks, and you should specify a unit (px, in, em, etc) and don't space it.

<table border="1px">
ryan is offline   Reply With Quote
Old 31st May 2004, 02:29   #12
sgtfuzzbubble011
 
sgtfuzzbubble011's Avatar
 
Join Date: Jun 2000
Posts: 60,839
Afaik, if you don't specify a unit, it will automatically use the value as pixels. But anyways, that's beside the point.

And I like tables. Tables are actually quite useful if you know how to use them well. And they can make some kickass layouts.
sgtfuzzbubble011 is offline   Reply With Quote
Old 31st May 2004, 02:32   #13
ryan
not fucked, not quite.
(Forum King)
 
ryan's Avatar
 
Join Date: Feb 2002
Location: Missouri via Tennessee
Posts: 8,813
Send a message via AIM to ryan
W3C says you should specify a unit, but yes, if you don't it defaults to px.

Divs can also make kickass layouts.. Just browse the designs on www.oswd.org, and see.
ryan is offline   Reply With Quote
Old 31st May 2004, 02:39   #14
sgtfuzzbubble011
 
sgtfuzzbubble011's Avatar
 
Join Date: Jun 2000
Posts: 60,839
I have seen. And I know. I didn't dispute that divs can make good layouts also. I simply said that tables can be used to make kickass layouts if you know what you're doing.

* sgtfuzzbubble99 thwaps idiot with a large <table>

sgtfuzzbubble011 is offline   Reply With Quote
Old 31st May 2004, 02:47   #15
ryan
not fucked, not quite.
(Forum King)
 
ryan's Avatar
 
Join Date: Feb 2002
Location: Missouri via Tennessee
Posts: 8,813
Send a message via AIM to ryan
http://www.htmlite.com/SD008.php

Quote:
Easy so far? Good. You don't have to go overboard and kill all of your tables. Just the ones you are using to create a layout effect. Tables are still great tools when it comes to showing a set of values in that type of layout. Basically though, tables are supposed to be used for organizing data, not for the entire content of a webpage.
</rant>
ryan is offline   Reply With Quote
Old 31st May 2004, 02:48   #16
squakMix
wwwyzzerdd
(Forum King)
 
squakMix's Avatar
 
Join Date: May 2003
Posts: 3,458
quote:
--------------------------------------------------------------------------------
Easy so far? Good. You don't have to go overboard and kill all of your tables. Just the ones you are using to create a layout effect. Tables are still great tools when it comes to showing a set of values in that type of layout. Basically though, tables are supposed to be used for organizing data, not for the entire content of a webpage.
--------------------------------------------------------------------------------


pff... says you
squakMix is offline   Reply With Quote
Old 31st May 2004, 07:33   #17
sgtfuzzbubble011
 
sgtfuzzbubble011's Avatar
 
Join Date: Jun 2000
Posts: 60,839
Quote:
pff... says you
Yeah. Pff... says you.

sgtfuzzbubble011 is offline   Reply With Quote
Reply
Go Back   Winamp & Shoutcast Forums > Community Center > General Discussions

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump