我的网站上有两个主要的div .left和.right。当我的网站上的页面首次加载时,.right通常有滚动条,但是,我必须单击.right才能使div滚动。如何让.right滚动而不必在其中单击?
css ......
div.left, div.right
{
position:absolute;
top:0;
bottom:0;
height:100%;
padding:0;
}
div.left
{
right:81%; left:0;
width:19%;
overflow:auto;
background:#000;
color:#fff;
}
div.right
{
right:0;
left:19%;
width:81%;
overflow-y:auto;
background:#fff;
color:#000
}
任何和所有帮助将不胜感激。谢谢你的阅读。 阿莱娜女士