suchen

Heim  >  Fragen und Antworten  >  Hauptteil

Schwierigkeiten bei der Positionierung von Divs

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?

P粉752290033P粉752290033274 Tage vor498

Antworte allen(1)Ich werde antworten

  • P粉635509719

    P粉6355097192024-04-05 11:02:56

    #success 是绝对定位的,因此 DOM 中其他元素的流动不会影响其定位,而 top 等属性会影响其定位,而 #puzzle 的位置为 static (默认),并且不受 top 和类似,但适合文档流。

    来自https://www.w3schools.com/Css/css_positioning.asp

    如果您希望 #success 位于 #puzzle 的左上角,您可以在 #puzzle 上设置 position:relative 并确保它是 HTML 中 #success 的父级。

    Antwort
    0
  • StornierenAntwort