Ich möchte ein Div relativ zu anderen Elementen auf der Seite positionieren.
Dies ist das anfängliche CSS:
#puzzle { display:inline-block; vertical-align: top; (position: static;) } #success { display: none; position: absolute; top: 235px; left: 130px; border: 3px solid blue; border-radius:25px; color: blue; background-color: #cfd; text-align:center; padding:40px; font-size:20pt; }
Bei Bedarf führe ich den folgenden Code aus:
let p = puz.getBoundingClientRect(); let s = getelem("success"); s.style.left = p.left; s.style.top = p.top; s.style.display = "block";
Das Ergebnis ist:
puz.getBoundingClientRect() DOMRect { x: 38, y: 183, ... } document.getElementById("success").getBoundingClientRect() DOMRect { x: 38, y: 33.833 ... }
(X und Y sind Synonyme für Links und Oben)
Sieht so aus:
Die Frage ist: Warum unterscheidet sich s.top von p.top?
#success 是绝对定位的,因此 DOM 中其他元素的流动不会影响其定位,而
top
等属性会影响其定位,而 #puzzle 的位置为static
(默认),并且不受top
和类似,但适合文档流。来自https://www.w3schools.com/Css/css_positioning.asp
如果您希望 #success 位于 #puzzle 的左上角,您可以在 #puzzle 上设置
position:relative
并确保它是 HTML 中 #success 的父级。