The code I provided to you is CSS, and goes between <head> and </head> in a <style> element. CSS is used to separate presentation from data. Much of the presentational HTML that you've used can be expressed in CSS, which would make your documents easier to maintain and overall faster performing.
Code:
<html>
<head>
<style type='text/css'>
table.mytable {
table-layout: fixed;
width: 750px;
height: 300px;
}
table.mytable td {
overflow: hidden;
width: 550px;
height: 300px;
text-align: left;
vertical-align: top;
}
div.scroll {
width: 100%;
height: 100%;
overflow: auto;
}
</style>
</head>
<body>
</body>
</html>
In order for that to not affect your other tables you may want to give your table a class name, and then reference that table from the style sheet in the same way that you did the <div>, in other words...
<table class='mytable'>
...is referenced from the style sheet as...
table.mytable {
table-layout: fixed;
}
If you have questions about Dreamweaver specifically, please ask those in the Dreamweaver forum, where I moved your last thread, as our resident Dreamweaver experts are more likely to help you there than here.
HTH!
Regards,
Rich
--
Author,
Beginning CSS: Cascading Style Sheets For Web Design
CSS Instant Results
http://www.catb.org/~esr/faqs/smart-questions.html