私はいくつかの楽しみのためにhtml5サイトをいじっています。相対的に配置されたコンテンツラッピングdivがあります..内部には、絶対に配置されたいくつかの要素があります..何らかの理由で、絶対要素を右端に配置すると、スクロールバーが表示されます. . 誰かが理由を解明できるかどうか疑問に思っています!?
<!doctype html>
<!-- paulirish.com/2008/conditional-stylesheets-vs-css-hacks-answer-neither/ -->
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7" lang="en"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8" lang="en"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9" lang="en"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js" lang="en"> <!--<![endif]-->
<head>
<title>moo</title>
</head>
<body>
<div id="content-wrap">
<div id="card-front" class="absolute">
<img src="/images/business-card-front.png" width="211" height="271" alt="Contact Business Person">
</div>
</div>
</body>
</html>
要素のスタイルは次のとおりです。
#content-wrap {
width: 960px;
min-height: 1300px;
margin: 0 auto;
position: relative;
background: transparent url(/images/site-bg.png) no-repeat 0 24px;
}
#card-front {
position: absolute;
z-index: 2;
width: 211px;
height: 271px;
top: 225px;
right: -150px;
}
何らかの理由で、これが機能しない理由がわかりません..絶対的な意味に反しますか?!
ご協力いただきありがとうございます!トム