PDA

Click to See Complete Forum and Search --> : Table Height Question...


tm_nootgroup
05-10-2005, 05:25 PM
...

Dakota1
05-10-2005, 07:07 PM
Well I would use CSS and also a DIV instead of a table, but if you must use a table try this out...

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Untitled Document</title>
<style type="text/css">
<!--
#noot {
overflow: scroll;
background-color: #CCCCCC;
height: 270px;
width: 200px;
}
-->
</style>
</head>

<body>
<table id="noot">
<tr>
<td>&nbsp;</td>
</tr>
</table>
</body>
</html>

as you can see the table is givin a id ("noot") and is controld via css (#noot {
overflow: scroll;
background-color: #CCCCCC;
height: 270px;
width: 200px;
}).

Roo-1
05-10-2005, 07:42 PM
Great link! I've recently been trying to find out how to have links open in a scrolling div. Purely out of curiosity.

Dakota1
05-11-2005, 06:29 PM
Are you using a external stylesheet?

Ryan8720
05-12-2005, 02:20 AM
Thanks Guys!

One quick question regarding pseudo classes in css:

pseudo active:

if you give active a different color, shouldn't it stay that color if the person is on that particular page?
No, the active pseudo class is the color while the link is being clicked (while it is active). As soon as you release the click the color goes to the visited pseudo class.

Dakota1
05-12-2005, 02:32 AM
Check out this link tm_nootgroup http://www.projectseven.com/tutorials/css/uberlinks/ I think what you are trying to do is create a "uberlink"