将标签元素的高设为屏幕的百分比
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了将标签元素的高设为屏幕的百分比相关的知识,希望对你有一定的参考价值。
html部分:
<body>
<div id="margin_box"></div>
</body>
jquery部分:
<script>
$(function(){
var percent =0.15;
$("#margin_box").css("height",window.document.body.clientHeight*percent)
})
</script>
以上是关于将标签元素的高设为屏幕的百分比的主要内容,如果未能解决你的问题,请参考以下文章