Forsaken_One
05-26-2006, 6:17 PM
Well, I thought I knew more about webdesign than what I really do...
I am having a lot of issues with HTML Tables, and CSS. What I mean by that is, I want to use CSS for everything, but... A lot of people are on different resolutions than I am, using a different browser, and so on and so forth...
What I am having a lot of issues with, is positioning content. When I think everything is fine and dandy, I open it in IE, or a smaller/bigger resolution, the whole site goes bye-bye...
So, I guess what I am asking is, how/what should I use in order for the best compliancy.
Also, if someone could explain the use of this stuff, and how to utilize it.
Source (http://www.w3schools.com/html/tryit.asp?filename=tryhtml_table_elements)
<html>
<body>
<table border="1">
<tr>
<td>
<p>This is a paragraph</p>
<p>This is another paragraph</p>
</td>
<td>This cell contains a table:
<table border="1">
<tr>
<td>A</td>
<td>B</td>
</tr>
<tr>
<td>C</td>
<td>D</td>
</tr>
</table>
</td>
</tr>
<tr>
<td>This cell contains a list
<ul>
<li>apples</li>
<li>bananas</li>
<li>pineapples</li>
</ul>
</td>
<td>HELLO</td>
</tr>
</table>
</body>
</html>
Yes, I can understand that code. But, I just don't really understand on how I can position it. Is that something that can only be done via CSS? If not, what am I missing?
I am having a lot of issues with HTML Tables, and CSS. What I mean by that is, I want to use CSS for everything, but... A lot of people are on different resolutions than I am, using a different browser, and so on and so forth...
What I am having a lot of issues with, is positioning content. When I think everything is fine and dandy, I open it in IE, or a smaller/bigger resolution, the whole site goes bye-bye...
So, I guess what I am asking is, how/what should I use in order for the best compliancy.
Also, if someone could explain the use of this stuff, and how to utilize it.
Source (http://www.w3schools.com/html/tryit.asp?filename=tryhtml_table_elements)
<html>
<body>
<table border="1">
<tr>
<td>
<p>This is a paragraph</p>
<p>This is another paragraph</p>
</td>
<td>This cell contains a table:
<table border="1">
<tr>
<td>A</td>
<td>B</td>
</tr>
<tr>
<td>C</td>
<td>D</td>
</tr>
</table>
</td>
</tr>
<tr>
<td>This cell contains a list
<ul>
<li>apples</li>
<li>bananas</li>
<li>pineapples</li>
</ul>
</td>
<td>HELLO</td>
</tr>
</table>
</body>
</html>
Yes, I can understand that code. But, I just don't really understand on how I can position it. Is that something that can only be done via CSS? If not, what am I missing?