CuriousCliff
New member
I have an HTML table with following style:
.BoxHolder {
display: inline;
border: 1px solid black;
cursor
ointer;
width:200px;
height:200px;
}
And a div inside of this table with the following style:
.BoxItemScroll{
overflow:auto;
width:198px;
height:198px;
}
The first problem is that in the table item seems to ignore the height parameter entirely, and the second problem is that even though the inner div is respecting the height parameter it is given (198px) the outer table will not wrap around the div. i.e. it appears that the table sits above the div as opposed to the div being inside of the table.
This happens on the Firefox browser, and possibly others but I haven't checked. It needs to work on Firefox more than anything else, mainly because the people I'm maintaining this project for prefer Firefox.
.BoxHolder {
display: inline;
border: 1px solid black;
cursor

width:200px;
height:200px;
}
And a div inside of this table with the following style:
.BoxItemScroll{
overflow:auto;
width:198px;
height:198px;
}
The first problem is that in the table item seems to ignore the height parameter entirely, and the second problem is that even though the inner div is respecting the height parameter it is given (198px) the outer table will not wrap around the div. i.e. it appears that the table sits above the div as opposed to the div being inside of the table.
This happens on the Firefox browser, and possibly others but I haven't checked. It needs to work on Firefox more than anything else, mainly because the people I'm maintaining this project for prefer Firefox.