![]() | |
![]() |
| | Thread Tools | Display Modes |
#1
| |||
| |||
|
#2
| |||
| |||
|
|
I was wondering wether it would be better to rewrite this html code (http://users.skynet.be/am036990/back...ges/links.html) so that every list is kept in a separate div rather than making use of tables? I usually think of true tabular data as associating information |
#3
| |||
| |||
|
|
GuyBrush Treepwood wrote: I was wondering wether it would be better to rewrite this html code (http://users.skynet.be/am036990/back...ges/links.html) so that every list is kept in a separate div rather than making use of tables? I usually think of true tabular data as associating information across two dimensions like a tv schedule or the like. Since there is no real use here for multiple rows, I don't really see how this is semantically a table. The three lists don't even need to be on the single row they are now on -- and the page might be the better for it. |
#4
| |||
| |||
|
|
On Tue, 20 Sep 2005 13:14:28 +0000, mbstevens wrote: GuyBrush Treepwood wrote: I was wondering wether it would be better to rewrite this html code (http://users.skynet.be/am036990/back...ges/links.html) so that every list is kept in a separate div rather than making use of tables? I usually think of true tabular data as associating information across two dimensions like a tv schedule or the like. Since there is no real use here for multiple rows, I don't really see how this is semantically a table. The three lists don't even need to be on the single row they are now on -- and the page might be the better for it. Yes, indeed. That's what I think too. But I'm not yet a real expert with css, and I don't see how the lists can be positioned like I want it. When I place every list in a separate div of class "linklist" and do div.linklist { float: left; } Now, when I resize my browser window (firefox), the rightmost div goes down, but not under the leftmost div, but under the middle div. I read this is the expected behavior of float, but I do not see a way to place it under the leftmost div. |
#5
| |||
| |||
|
|
div.linklist { float: left; } Now, when I resize my browser window (firefox), the rightmost div goes down, but not under the leftmost div, but under the middle div. I read this is the expected behavior of float, but I do not see a way to place it under the leftmost div. Reverse the order of the divs. Floating an object causes it to behave |
#6
| |||
| |||
|
|
GuyBrush Treepwood wrote: div.linklist { float: left; } Now, when I resize my browser window (firefox), the rightmost div goes down, but not under the leftmost div, but under the middle div. I read this is the expected behavior of float, but I do not see a way to place it under the leftmost div. Reverse the order of the divs. Floating an object causes it to behave as an <img> would. |
#7
| |||
| |||
|
|
Reverse the order of the divs. Floating an object causes it to behave as an <img> would. The rightmost left and the left most right? No. I meant the textual placement of the divs in the code. In the HTML |
![]() |
| Thread Tools | |
| Display Modes | |
| |