Advertisement
Advertisement
| 05.15.2008 at 08:27AM PDT, ID: 23405553 |
|
[x]
Attachment Details
|
||
|
[x]
The Solution Rating System
|
||
With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.
Your Input Matters If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support. Thank you! |
||
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32: 33: 34: 35: 36: 37: 38: 39: 40: 41: 42: 43: 44: 45: 46: 47: 48: 49: 50: 51: 52: 53: 54: 55: 56: 57: 58: 59: 60: 61: 62: 63: 64: 65: 66: 67: 68: 69: 70: 71: 72: 73: 74: 75: 76: 77: 78: 79: 80: 81: 82: 83: 84: 85: 86: 87: 88: 89: 90: 91: 92: 93: 94: 95: 96: 97: 98: 99: 100: 101: 102: 103: 104: 105: 106: 107: 108: 109: 110: 111: 112: 113: |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3c.org/TR/1999/REC-html401-19991224/loose.dtd">
<!-- saved from url=(0051)http://www.imaputz.com/cssStuff/bigFourVersion.html -->
<HTML lang=en xml:lang="en" xmlns="http://www.w3.org/1999/xhtml"><HEAD><TITLE>Pure CSS Scrollable Table with Fixed Header</TITLE>
<META http-equiv=content-type content="text/html; charset=UTF-8">
<META http-equiv=language content=en-us>
<LINK href="Mode=update_files/fixedHeader.css" type=text/css rel=stylesheet>
<script>
function openup() {
document.getElementById("show").style.display = 'block';
}
</script>
<STYLE type=text/css>
DIV.xtableContainer {
CLEAR: both; OVERFLOW: auto; WIDTH: 127px; HEIGHT: 100px
}
DIV.xtableContainer TABLE {
FLOAT: left; WIDTH: 227px
}
THEAD.xfixedHeader TR {
POSITION: absolute
top;5px;
left; 5px;
}
THEAD.xfixedHeader TH {
BORDER-RIGHT: #b74 1px solid; PADDING-RIGHT: 3px; BORDER-TOP: #eb8 1px solid; PADDING-LEFT: 3px; FONT-WEIGHT: normal; BACKGROUND: #c96; PADDING-BOTTOM: 4px; BORDER-LEFT: #eb8 1px solid; PADDING-TOP: 4px; TEXT-ALIGN: left
}
TBODY.xscrollContent TD {
BORDER-RIGHT: #ccc 1px solid; PADDING-RIGHT: 3px; BORDER-TOP: #ddd 1px solid; PADDING-LEFT: 4px; BACKGROUND: #fff; PADDING-BOTTOM: 3px; PADDING-TOP: 2px; BORDER-LEFT-STYLE: none; BORDER-BOTTOM-STYLE: none
}
</STYLE>
<META content="MSHTML 6.00.2900.3314" name=GENERATOR></HEAD>
<BODY>
<table>
<tr>
<td>
Various bits of text
here and here
and here
<BR>
and here
</td>
</tr>
</table>
<DIV style="OVERFLOW: auto; WIDTH: 127px; HEIGHT: 100px;">
<TABLE class=xscrollTable cellSpacing=0 cellPadding=0 width="100%" border=0>
<THEAD class=xfixedHeader>
<TR>
<TH>08999</TH>
<TH>Tag</TH>
</TR></THEAD>
<TBODY class=xscrollContent>
<TR>
<TD>BEDD</TD>
<TD>CARP</TD>
</TR>
<TR>
<TD>BEDD</TD>
<TD>CARP</TD>
</TR>
<TR>
<TD>BEDD</TD>
<TD><a href="#" onclick="openup()">CARPY</a></TD>
</TR>
<tr>
<td colspan=2>
<div id="show" style="display: none; ">
<table>
<TR>
<TD>phil</TD>
<TD>CARP</TD>
</TR>
<TR>
<TD>jim</TD>
<TD>CARP</TD>
</TR>
</table>
</div>
</td>
</tr>
<TR>
<TD>BEDD</TD>
<TD>CARP</TD>
</TR>
<TR>
<TD>BEDD</TD>
<TD>CARP</TD>
</TR>
<TR>
<TD>BEDD</TD>
<TD>CARP</TD>
</TR>
<TR>
<TD>BEDD</TD>
<TD>CARP</TD>
</TR>
<TR>
<TD>BEDD</TD>
<TD>CARP</TD>
</TR>
<TR>
<TD>BEDD</TD>
<TD>CARP</TD>
</TR>
</TBODY></TABLE></DIV>
<DIV><BR></DIV>
</BODY></HTML>
|