absolute
親divである位置を持つdiv(parentDivStyle)があります。次に、親 div 内に position を持つ 5 つの children(childDivStyle) div がありrelative
ます。overflow
親divの非表示に設定しました。そのため、子 div の一部が表示されません。jquery では表示されない div を取得したいと考えています。何か方法はありますか?
私はそれをグーグルで検索しましたが、ほとんどの結果は「目に見える」プロパティに関連しています。それは私が望んでいるものではありません。また、私はどのプラグインも好みません。助けてください。
CSS
.parentDivStyle {
overflow:hidden;
width:300px;
height:50px;
position:absolute;
background:#ccc;
float:left;
}
.childDivStyle {
width:100px;
height:50px;
position:relative;
float:left;
background:red;
border: 1px solid black;
}
HTML
<div class="parentDivStyle">
<div class="childDivStyle">1</div>
<div class="childDivStyle">2</div>
<div class="childDivStyle">3</div>
<div class="childDivStyle">4</div>
<div class="childDivStyle">5</div>
</div>