Ширина смещения элемента JS возвращает неправильное значение - PullRequest
0 голосов
/ 06 января 2019

Я пытаюсь получить ширину элемента, но возвращаемое значение неверно

   let container = document.querySelector('.content')
    console.log(container.offsetWidth) //this will log wrong value 1182px instead of 960px

  console.log(getComputedStyle(container).width) //1182px anyway I don't have any idea from where the value comes

enter image description here

Не могу понять, почему возвращаемое значение неверно

1 Ответ

0 голосов
/ 06 января 2019

Попробуй это. Это сработало для того, чтобы получить ширину смещения вы можете установить ширину

let container = document.querySelector('.content')
container.style.width = "fit-content";
console.log(container.offsetWidth);
...