このコードは要素の高さを設定する必要があります。スタイルは追加されません。私は明白な何かを欠いていますかJavascriptを使用して高さを設定する
function setGround() {
document.getElementById('content').style.height = '40px';
}
document.onload = setGround;
HTMLは非常に基本的なものです:
<!DOCTYPE html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Template</title>
<link rel="stylesheet" type="text/css" href="css/default.css"/>
<link rel="stylesheet" type="text/css" href="css/orange.css"/>
<script type="text/javascript" src="javascript/detect-css.js"></script>
</head>
<body>
<header>
<div id="logo"></div>
</header>
<section id="sidebar"><p>sf </p>
</section>
<section id="content"><p>sf </p>
</section>
</body>
</html>
はあなたの助けをありがとう!
の
を使用する必要があります。それでは 'setGround()'を実行するだけです。 –