|
|
|||||||||
|
|||||||||
| |||||||||
|
|
|
| |||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
#1
|
|||
|
|||
|
urgent! how do i align this right?
Ok look at this page:
http://www.brownvado.com/temp/testing.htm why is my alignment screwed up? in particular if you look at where it says "Box 1", why does the yellow background extend past the left-most border? how can i eliminate this, so that the yellow background remains within the left-most border? i will be totally in debt to your cyber soul if you can solve this for me...but for real, thanks for any help or suggestions you can offer me...i just got into css, so im confused with certain things. peaceNadvance |
|
#2
|
|||
|
|||
|
In your css definitions, you have set tables to have a background colour of yellow, thus yellow will be applied to tables.
You can eliminate this by declaring the style as you go, something like this, I would also set me left cell to span two rows Code:
<table width="300px" border="0" cellspacing="0" cellpadding="0">
<tr>
<td rowspan="2"> </td>
<td><img class="border" src="images/general/usratoon.jpg" width="360" height="418"></td>
</tr>
<tr>
<td style="background-color: none">Box 1</td>
</tr>
</table>
I'm not sure what the result of this would be, but it should point you in the right direction.
__________________
How can I soar like an eagle when I'm flying with turkey's? |
![]() |
| Viewing: Dev Shed Forums > Other > Beginner Programming > urgent! how do i align this right? |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
|
|