我可以定位相对于父母固定的元素吗

我可以定位相对于父母固定的元素吗

本文介绍了我可以定位相对于父母固定的元素吗?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我发现,当我定位一个元素固定的时候,如果父对象是相对定位的,它是否相对于窗口位置固定?

I find that when I position an element fixed, it doesn't matter if the parent is positioned relative or not, it will position fixed, relative to the window?

CSS

 c $ c>,,,,可以使用 :, right:和 bottom:按照您的看法定位。 

To position an element "fixed" relative to the window, you want position:fixed, and can use top:, left:, right:, and bottom: to position as you see fit.

例如:

#yourDiv { position:fixed; bottom:40px; right:40px; }

这将定位 yourDiv 固定相对于网页浏览器窗口,底边40像素,右边缘40像素。

This will position yourDiv fixed relative to the web browser window, 40 pixels from the bottom edge and 40 pixels from the right edge.

这篇关于我可以定位相对于父母固定的元素吗?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-21 10:11