0
我有一個沒有設置寬度的div,所以它是0.在我附加了另一個div與文本。一切都是絕對的,我無法改變。會發生什麼是:在safari我得到30和30,在Firefox中我得到0和30. 有沒有什麼辦法可以解決這個問題?我需要我的父div寬度有孩子的寬度+它的x位置。在火狐和歌劇的父級div寬度是0,即使我有孩子
var d = document.createElement("d");
d.style.position = "absolute";
document.body.appendChild (d);
var c = document.createElement("s");
c.style.position = "absolute";
c.innerHTML = "Blah";
d.appendChild (c);
console.log (d.scrollWidth);
console.log (c.scrollWidth);
我很害怕那樣,似乎我必須做我自己的計算。 –