This time I will show you how to fix a div or table at a specified position with css. What are the precautions for fixing a div or table at a specified position with css? The following is a practical case, let’s take a look.
.bottomTable{ background-color: rgb(249,249,249); z-index:99999999; position:fixed; bottombottom:0; left:0; width:100%; _position:absolute; /* for IE6 */ /* _top: expression(document.body.scrollTop+document.body.clientHeight-this.offsetHeight); */ _top: expression(document.body.scrollTop+document.body.clientHeight-this.offsetHeight-6); /* for IE6 */ overflow:visible; }
About how to operate scroll bars in HTML
htmlHow to make thin line tables
HTML basic knowledge, detailed introduction to the style of hyperlink settings
The above is the detailed content of How to fix div or table at specified position with css. For more information, please follow other related articles on the PHP Chinese website!