Se richiami un oggetto del documento prima che sia completamente caricato è normale che non restituisca nulla per risolvere devi usare unload
codice:
<head>
    <script>
window.onload= function(){
       boxwidth = document.getElementById("box").style.width;
       alert(boxwidth)
}
    </script>

</head>