How To Make A Tables Header Static When Scrolling
This issue has appeared many times. I want the table's title to be fixed when I scroll down, how can I do that? My code for the table looks like this Copy
CSS:
.table_title {
position: fixed;
background: #000;
color: #fff;
}
.tr_first {
top: 150px;
position: relative;
}
.wrapper {
height: 150px;
overflow: scroll;
}
Demo on jsfiddle: http://jsfiddle.net/q2jRu/
Solution 2:
Simple:please first make separate div for head and give id for that div e.i Then make in css rule #head{position:fixed;} Now solve your problem.
Element?
I have a table and I need the cells to have an element posi…
Fixed Header Div With Scrollable Div Below
I'm trying to place two divs one above the other. The t…
If Div Contains Specific Word Add A New Class In Parent Div Using Jquery
This is the HTML code: Offer And here's the jquery…
How To Make A Tumblr Theme (specifically Corner Images) Adjust To Different Screen Resolutions?
I have a pleasant theme on tumblr ( mostlylagomorph.tumblr.…
Show All "title" Tooltips At Once On One Page
Thank you for the answers. I edited my question though: I&#…
How To Make A Transition Effect Up The Input On Change
I need to place this particular effect on a dropdown I need…
How To Limit The Html Table Records In Each Page
I am populating a table in my jsp which has more than 20 re…
Displaying Validation Error Instead Of Default Text Errors In Django Usercreationform
I have a very simple registration form on my website. My fo…
|
Post a Comment for "How To Make A Tables Header Static When Scrolling"