Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的网站上有一个流式闪光收音机,我将其设置为当前位置,具有绝对位置。问题是不同的分辨率出现在不同的地方。我该如何解决?
谢谢!
绝对位置元素相对于第一个具有非静态位置的父元素定位。确保您绝对定位的元素不包含在移动位置的元素中。
添加position:relative您的#teljes:
position:relative
#teljes
#teljes { width: 1024px; height: 768px; margin: 0px auto; position:relative;}
添加position:relative;到 div 将使所有绝对定位的孩子根据父 div 占据位置。
position:relative;