Ask a Question related to Macromedia Dynamic HTML, Design and Development.
-
ahid #1
Table scrollbar
I really dont know if this is possible but i have a table, and i want to put
quite alot of text into it. But the thing is i dont want to make the table any
bigger.
So my question is, is there a way to put a scroll bar on a table or another
way around this problem.
Thanks alot, Andy
ahid Guest
-
Help with scrollbar
Hi all, im trying to place scrollbars onto my HTML website. It's already complete and has been used for awhile not but ive decided to add scrollbars... -
Table with a scrollbar?
Heya, Does anyone know how to create a table with a scrollbar? -Spence -
Could not load type VTFixup Table from assembly Invalid token in v-table fix-up table.
We are getting this error after clearing the web.config of database infomation - even after using the wizard to re-enter the information. I could... -
Adding scrollbar to a table
I'm trying to create a table with a scrollbar when the text overflows the table. However, it never worked for me using CSS. Can someone list the... -
Scrollbar + Table
"goingpostal101" webforumsuser@macromedia.com wrote: Not so much "on" a table as "in" the same: The easiest way is an iframe. However, it's... -
Daniel Jamin #2
Re: Table scrollbar
Yes it is possible via a <div> </div> tag.
Please see attached code.
Put the Scrolldiv code in the head section of your document.
This will define the area allocated for data/text before the scroll bars show.
Then in the body section add on either side of your table the div tags.
Et voila.
If you want to only have the side scrollbar (and not the bottom one) make your
table width smaller than the size defined in your ScrollDiv code taking account
of the size of the side scroll bar.
Play around with it and have fun!
Daniel
I use it with a line on either side.
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<style>
#ScrollDiv {
width:100px;
height:200px;
overflow: auto;
background-color:#FFFFFF;
border-top: 1px none #666666;
border-right: 1px solid #666666;
border-bottom: 1px none #666666;
border-left: 1px solid #666666;
padding-right: 1px;
padding-left: 1px;
}
</style>
</head>
<body>
<div id="ScrollDiv">
<table width="80" border="0" cellspacing="0" cellpadding="0">
<tr>
<td><p>afafas</p>
<p>asfdsa</p>
<p>fsa</p>
<p>fsafsa</p>
<p>fsa</p>
<p>fsa</p>
<p>fsaf</p>
<p>sf</p>
<p>safsad</p>
<p>fsadf</p>
<p>asfas</p>
<p>fsa</p>
<p>safsa</p>
<p>fsa</p>
<p>fsaf</p>
<p>asfas</p>
<p>fasfsa</p></td>
</tr>
</table>
</div>
</body>
</html>
Daniel Jamin Guest



Reply With Quote

