我正在处理一个小的 html 页面。我正在使用 javascript 来获取屏幕的尺寸。我需要将该变量传递给如下的 CSS 样式。我怎样才能做到这一点?另外我注意到我需要将“px”放在值的末尾,比如 top:100px 而不是 top:100。我怎样才能将它添加到我的变量中?谢谢你的帮助
<script type="text/javascript">
var percent =1;
var myWidth = Math.round( screen.width * percent);
var myHeight = Math.round( screen.height * percent);
</script>
<style type="text/css">
div.content {
margin: auto;
top: myHeight ;
width: myWidth ;
}
</style>