How to use html css to control div or table to be fixed in a specified position

How to use html css to control div or table to be fixed in a specified position
CSS CodeCopy content to clipboard
  1. .bottomTable{
  2. background-color : rgb (249,249,249);
  3. z-index :99999999; position : fixed ; bottom : 0 ; left : 0 ; width : 100%; _position: absolute ; /* for IE6 */   
  4. /* _top: expression(document.body.scrollTop+document.body.clientHeight-this.offsetHeight); */   
  5. _top: expression(document.body.scrollTop+document.body.clientHeight-this.offsetHeight-6); /* for IE6 */   
  6. overflow : visible ;
  7. }

1. z-index: Set the layer to be on the topmost layer.

2. position: fixed; set the positioning.

3. _top: expression(document.body.scrollTop+document.body.clientHeight-this.offsetHeight-6); Control the height of the layer from the top by binding js with css.

Here the control layer is at the bottom, and the specific values ​​are adjusted accordingly according to needs.

4. document.body.scrollTop: body, the scrolling distance of the body tag scroll bar, which can be replaced by other tag objects (with scroll bars).

5. document.body.clientHeight, the height of the body tag, can be replaced with other tag objects.

6, -6, and make corresponding changes according to the specific situation.

The above article on how to use html css to control div or table to be fixed in a specified position is all I want to share with you. I hope it can give you a reference. I also hope that you will support 123WORDPRESS.COM.

Original URL: http://www.cnblogs.com/skycsdn/archive/2016/06/13/5580009.html

<<:  MySQL tutorial thoroughly understands stored procedures

>>:  CSS3 flexible box flex to achieve three-column layout

Recommend

Vue implements small form validation function

This article example shares the specific code of ...

A magical MySQL deadlock troubleshooting record

background Speaking of MySQL deadlock, I have wri...

Implementation example of react project from new creation to deployment

Start a new project This article mainly records t...

Analysis of the pros and cons of fixed, fluid, and flexible web page layouts

There is a question that has troubled web designe...

Solution to MySQL error code 1862 your password has expired

The blogger hasn't used MySQL for a month or ...

CSS example code for setting scroll bar style

The CSS implementation code for setting the scrol...

MySQL transaction, isolation level and lock usage example analysis

This article uses examples to describe MySQL tran...

How to upload projects to Code Cloud in Linux system

Create a new project test1 on Code Cloud Enter th...

Simple implementation of mini-vue rendering

Table of contents Preface Target first step: Step...

Use pure CSS to disable the a tag in HTML without JavaScript

In fact, this problem has already popped up when I...

How to implement page jump in Vue project

Table of contents 1. Create a vue-cli default pro...

You really need to understand the use of CSS variables var()

When a web project gets bigger and bigger, its CS...

WeChat applet to save albums and pictures to albums

I am currently developing a video and tool app, s...

Analysis of log files in the tomcat logs directory (summary)

Each time tomcat is started, the following log fi...