发布网友 发布时间:2022-04-22 11:03
共4个回答
热心网友 时间:2022-05-14 03:24
$('.nav').width($(window).width());
$('.nav').height($(window).height());
用的jQuery
热心网友 时间:2022-05-14 04:42
style="width:100%"追问这个是不行的,因为这个div被上一层只有1024px宽度的div包裹,100%也只有1024px
追答用js 控制, 先获取屏幕宽度,在赋值给div
热心网友 时间:2022-05-14 06:16
<div style="position:relative; width:100%;height:100px; background:#ccc;">
<div style="width:1024px;height:80px; background:#06f; margin: 0 auto;">
<div style="width:100%;height:30px;background:#000; position:absolute; top:0px; left:0px;"></div>
</div>
如果nav一定要父元素1024的话 我只能想到用绝对定位了 = =。。
热心网友 时间:2022-05-14 08:08
style="width:100%"