Posted by booner on 08/09/05 20:42
I have the following:
<head>
<style>
#tablist{
padding: 3px 0;
margin-left: 0;
margin-bottom: 0;
margin-top: 0.1em;
font: bold 12px Verdana;
}
#tablist li{
list-style: none;
display: inline;
margin: 0;
}
#tablist li a{
padding: 3px 0.5em;
margin-left: 3px;
border: 1px solid #778;
border-bottom: none;
background: white;
text-decoration:none;
}
#tablist li a.current{
background: #F1C449;
color: white;
text-decoration:none;
}
#tabcontentcontainer{
width: 100%;
height: 95%;
padding: 3px;
border: 1px solid #778;
}
</style>
</head>
<html>
<ul id="tablist">
<li><a href="users.asp" class="current">Users</a></li>
<li><a href="projects.asp">Projects</a></li>
</ul>
<div id="tabcontentcontainer">
<frameset cols="30%,*"
framespacing="0">
<frame name="usersFrame"
src="editUsers.asp"
frameborder="0"
marginwidth="5"
marginheight="5"/>
<frame name="userFrame"
src="blank.html"
style="border-style:none"
frameborder="0"
marginwidth="5"
marginheight="5"/>
</frameset>
</div>
</html>
I see the tabs ... but I do not see the frameset. If I remove the tabs -
then I get the frameset. I'd like both :-)
Any insight would be greatly appreciated.
BBB
Navigation:
[Reply to this message]
|