Tables issue in php/html
Moderator: General Moderators
Tables issue in php/html
I have been having this issue for a long time now and i keep getting 100 different answers
I am trying to make a CELL in a table that is non expandable...meaning it has a "CERTAIN" width and height
i have tried CSS and DIV and offset....none of them work
can someone please point me in the right direction or show some examples
I am trying to make a CELL in a table that is non expandable...meaning it has a "CERTAIN" width and height
i have tried CSS and DIV and offset....none of them work
can someone please point me in the right direction or show some examples
By CSS, I'm assuming you've done:
Have you tried:
I know that's not the proper way to do that, but if nothing else has worked....
Posting your code might help you get a better answer.
Code: Select all
style = "width:100px;height:100px;"Have you tried:
Code: Select all
<td width="100" height="100">Posting your code might help you get a better answer.
Real programmers don't comment their code. If it was hard to write, it should be hard to understand.
Pimptastic | Please use
as you can see...all the "dddd" have the cell going crazy
any suggestions?
Pimptastic | Please use
Code: Select all
,Code: Select all
and [syntax="..."] tags where appropriate when posting code. Your post has been edited to reflect how we'd like it posted. Please read: [url=http://forums.devnetwork.net/viewtopic.php?t=21171]Posting Code in the Forums[/url] to learn how to do it too.[/color]
That doesn't work eitherCode: Select all
<table border="1" width="14%" id="table1">
<tr>
<td width="100" height="100">This is a test to see how wide the table cell can get<p>ddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddd</p></td>
</tr>
</table>any suggestions?
Pimptastic | Please use
Code: Select all
,Code: Select all
and [syntax="..."] tags where appropriate when posting code. Your post has been edited to reflect how we'd like it posted. Please read: [url=http://forums.devnetwork.net/viewtopic.php?t=21171]Posting Code in the Forums[/url] to learn how to do it too.[/color]You could try fiddling with the overflow property - see what that does.
Real programmers don't comment their code. If it was hard to write, it should be hard to understand.