0

问题是 div,称为“dragger_container”的行为不像我预期的那样,并且从父 div 中出来。这是不可接受的,因为它是一个显示用户滚动进度的元素(它是一个 jquery 插件 mCustomScrollBar)并与用户交互。
向任何人寻求帮助。
提前致谢

ps 无法附加信誉的屏幕原因,在此处上传: screen_url

.mcs_my_container
{
width: 100%;
height: 100%;
}

.mcs_my_container .customScrollBox
{
margin-top: 10px;
position: relative;
height: 80%;
width: 100%;
overflow:hidden;
border: 1px solid green;
display: block;
}

.mcs_my_container .customScrollBox .container
{
position: absolute;
width: 70%;
top: 0;
float: left;
margin-left: 20px;
}

.mcs_my_container .customScrollBox .content
{
clear: both;
}

.mcs_my_container .dragger_container
{
position: absolute;
/*top: 10px !important;*/
width: 2px;
/*height: 50px;50px
height: 100%;*/
height: 110px;
top: 0px;
right: 20px;
float: right;
background: #000;
cursor: s-resize;
-moz-border-radius: 2px;
-khtml-border-radius: 2px;
-webkit-border-radius: 2px;
border-radius: 2px;
cursor: s-resize;
}

.mcs_my_container .dragger
{
position: absolute;
width: 4px;
/*height: 100%;*/
height: 10px;/* !important;*/
background: #999;
text-align: center;
line-height: 10px;
color: #666;
overflow: hidden;
cursor: pointer;
-moz-border-radius: 2px;
-khtml-border-radius: 2px;
-webkit-border-radius: 2px;
border-radius: 2px;
margin-left: -1px;
}

.mcs_my_container .dragger_pressed
{
position: absolute;
width: 6px;
margin-left: -2px;
height: 10px;
background: #999;
text-align: center;
line-height: 10px;
color: #666;
overflow: hidden;
-moz-border-radius: 4px;
-khtml-border-radius: 4px;
-webkit-border-radius: 4px;
border-radius: 4px;
cursor: s-resize;
}

.divNoteText
{
position: static;
border: 1px solid red;
word-wrap: break-word;
}
4

1 回答 1

1

您需要添加到您希望将其定位在其中position: relative的父容器中。dragger_container

如果你不这样做,那么dragger_container将绝对定位到最近的相对定位的父元素,或者如果没有,那么它将定位在body.

于 2012-05-30T14:55:27.123 回答