我无法获取 CSS 中定义的元素的宽度。我想出了如何使用 Javascript 获取 CSS 规则,但我无法访问宽度。菜单是我在 CSS 中使用em定义的固定宽度。
我正在尝试根据浏览器窗口减去固定菜单宽度来更改div1的宽度。
注意:我已经尝试过使用style.width
,但它在控制台中返回一个空行。
jsfiddle:http: //jsfiddle.net/kj6pQ/
var div1 = document.createElement('div'),
css = getMatchedCSSRules(document.getElementById('menu'));
console.log(css); //works but dont' konw how to access width
div1.style.width = window.innerWidth - <!-- menu width -->;