Thread: Help With Table Sizes
Results 1 to 4 of 4
Related
-
<p> and <h...> sizes Forum: HTML Forum
Replies: 1 -
to or not to specify font sizes Forum: HTML Forum
Replies: 1 -
website sizes Forum: General Discussion
Replies: 2 -
Editing window sizes Forum: Website Scripts Forum
Replies: 0 -
Font sizes in CSS Forum: CSS Forum
Replies: 4
-
04-10-2003, 04:50 PM #1
Help With Table Sizes
Ok guys.... I made some graphics but they are different sizes like say one is 700 pixels by 500 pixels but then another is only like 200 by 100. How do I get the full size of the 700 x 500 but the 200 x 100 still be the correct size!!?!?!?! Help PLZ
-
04-10-2003, 05:37 PM #2
Need more information, since there doesn't appear to be a problem. Are you trying load one photo into the pre-defined spot (WIDTH= and HEIGHT=) of another?
-
04-11-2003, 08:57 AM #3
You need to define the sizes in the respective IMG tags sort of like:
Code:<img src="pitcher.gif" width="700" height="500"> <img src="foto.gif" width="200" height="100">
Code:<style> <!-- img.pitcher { width:700;height:500; } img.foto { width:200;height:100; } --> </style>
Code:<img src="pitcher.gif" class="pitcher"> <img src="foto.gif" class="foto">
Is this sort of what you're after? If not, we need to see some code.
-
04-11-2003, 04:44 PM #4
Yes i figured it out about 30 minutes after i posted lol. What i was doin wrong was i had the width/height="" commands in the <table>....I deleted it and oput it in the <td> and it worked