我正在尝试更改包含子表单的 DIV 标记的填充。下面是HTML
<div id="a">
<form id="b" style="background-color:Red;height:300px">
<input type="text" />
</form>
</div>
下面是CSS
document.onclick = function(){
document.getElementById('a').style.padding = "1% 1% 1% 1%"
};
请检查<a href="http://jsfiddle.net/74WbB/2/" rel="nofollow">this fiddle 中的行为。它无法正常工作...