Сообщение от Яростный Меч
|
что любопытно - здесь на форуме не работает, если оформить код со словом "run"
|
А в консоль в детстве не учили заглядывать, товарищ программист, а?
Цитата:
|
Uncaught SyntaxError: Unexpected token & [showhtml:14]
|
Ты зачем неразрывные пробелы в коде используешь?
Вот почищенный код:
<div id="itog1" style="width: 120px; height: 120px; margin: 0 auto; border: medium solid rgb(34, 34, 34);"></div>
<pre>
top <span></span>
right <span></span>
bottom <span></span>
left <span></span>
</pre>
<script>
(function () {
var itog = document.querySelector('#itog1');
var compStyle = getComputedStyle(itog, "");
document.querySelector('pre span:nth-of-type(1)').innerHTML = compStyle.borderTop;
document.querySelector('pre span:nth-of-type(2)').innerHTML = compStyle.borderRight;
document.querySelector('pre span:nth-of-type(3)').innerHTML = compStyle.borderBottom;
document.querySelector('pre span:nth-of-type(4)').innerHTML = compStyle.borderLeft;
})();
</script>