questionCSS fixed positioning position:fixed is very easy to use. It is positioned relative to the browser's viewport. top:0;left:0 means in the upper left corner. <body> <div class="container"> </div> </body> <style> .container{ width: 100px; height: 100px; background: #888; position: fixed; top: 100px; left: 100px; } </style> When the parent element sets transform <body> <div class="BFC-box"> <div class="container"></div> </div> </body> <style> .BFC-box{ margin:200px; height: 200px; width: 200px; border:2px solid red; transform: scale(1); } .container{ width: 100px; height: 100px; background: #888; position: fixed; top: 100px; left: 100px; } </style> The fixed element is now positioned relative to its parent element. This is really annoying, because transform elevates the status of an element, as described in the W3C specification:
In elements whose transform is not none, positioning is affected. SolutionWithout affecting the layout, you can directly move the element to be positioned under the body: <body> <div class="BFC-box"></div> <div class="container"> </div> </body> If it is inconvenient to operate elements in the component, you can use js, taking vue as an example: <div ref="container" class="container"></div> mounted(){ document.body.append(this.$refs['contaier']) } This is the end of this article on how to solve the position:fixed fixed positioning offset problem. For more relevant position:fixed fixed positioning offset content, please search 123WORDPRESS.COM’s previous articles or continue to browse the related articles below. I hope that everyone will support 123WORDPRESS.COM in the future! |
<<: Summary and practice of javascript prototype chain diagram
>>: MySQL Basic Tutorial: Detailed Explanation of DML Statements
1.Jenkins installation steps: https://www.jb51.ne...
What is keepalive? In normal development, some co...
1. Apache 2.4.41 installation and configuration T...
One of the most important features of a style she...
The sudo command allows a trusted user to run a p...
It's the end of the year and there are fewer ...
When configuring nginx reverse proxy, the slashes...
Table of contents 1. Install Docker 2. Install so...
Generally speaking, when we view the contents of ...
When we use the folder properties dialog box in Wi...
This article shares the specific code of js to im...
Elastic stack, commonly known as ELK stack, is a ...
In the previous article, we introduced three comm...
Article Structure 1. Preparation 2. Install Java ...