CSS position fixed left and right double positioning implementation code

CSS position fixed left and right double positioning implementation code

CSS Position
The position attribute specifies the positioning type of an element.

The position property has five values:

  • static
  • relative
  • fixed
  • absolute
  • sticky

Elements can be positioned using the top, bottom, left and right properties. However, these properties will not work unless the position property is set first. They also work differently, depending on the positioning method.

<!DOCTYPE html>
<html>
	<head>
		<meta charset="utf-8">
		<title></title>
		<style>
			.box{
				width: 1400px;
				height: 1500px;
				margin: 0 auto;
			}
			.box1{
				border: 1px solid #000000;
				height: 200px;
				width: 200px;
			    display: inline-block;
				position: fixed;
		
			}
			.box02{
				    border: 1px solid #006400;
				    height: 1500px;
				    width: 800px;
				    display: inline-block;
				    margin: 0 20px;
				    margin-left: 250px;
			}
			.box03{
				border: 1px solid #006400;
				height: 200px;
				width: 200px;
				display: inline-block;
			    position: fixed;
			}
		</style>
	</head>
	<body>
		<div class="box">
			<div class="box1">123</div>
			<div class="box02">456</div>
			<div class="box03">789</div>
		</div>
	</body>
</html> 

insert image description here

This is the end of this article about the implementation code of CSS position fixed left and right double positioning. For more relevant CSS position fixed positioning content, please search 123WORDPRESS.COM’s previous articles or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future!

<<:  How to prevent Vue from flashing in small projects

>>:  Implementation code of front-end HTML skin changing function

Recommend

How to quickly add columns in MySQL 8.0

Preface: I heard a long time ago that MySQL 8.0 s...

Introduction to HTML link anchor tags and their role in SEO

The <a> tag is mainly used to define links ...

Docker container time zone error issue

Table of contents background question Problem ana...

How to use CocosCreator object pool

Table of contents Preface: Specific operations St...

Introduction to the usage of common XHTML tags

There are many tags in XHTML, but only a few are ...

Use of Docker UI, a Docker visualization management tool

1. Introduction to DockerUI DockerUI is based on ...

Some notes on modifying the innodb_data_file_path parameter of MySQL

Preface innodb_data_file_path is used to specify ...

Full process record of Nginx reverse proxy configuration

1. Preparation Install Tomcat on Linux system, us...

How to split and merge multiple values ​​in a single field in MySQL

Multiple values ​​combined display Now we have th...

Introduction and usage of Angular pipeline PIPE

Preface PIPE, translated as pipeline. Angular pip...

Detailed explanation of docker network bidirectional connection

View Docker Network docker network ls [root@maste...

Summary of Kubernetes's application areas

Kubernetes is the leader in the container orchest...

Steps to repair grub.cfg file corruption in Linux system

Table of contents 1. Introduction to grub.cfg fil...

Share 20 excellent web form design cases

Sophie Hardach Clyde Quay Wharf 37 East Soapbox Rx...

How to determine if the Linux system is installed on VMware

How to determine whether the current Linux system...