web-dev-qa-db-ja.com

オーバーラップを伴うCSSフローティング

作業中のページに単純な水平タブ構造を設定しようとしていますが、フローティングdivとz-indexの組み合わせで問題が発生しています。

ブラウザで次のコードを表示します。

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>Untitled Document</title>
    <style type="text/css">
        #main { width: 500px; z-index: 1;}

        .left { float: left; width: 96px; background-color: red; border: 2px solid orange; z-index: 2; margin-right: -2px }
        .right { float: left; width: 396px; background-color: #09c; border: 2px solid green; z-index: 3; }

        .clear { clear: both; }
</style>
</head>

<body>
    <div id="main">
        <div class="left">
            LEFT
        </div>
        <div class="right">
            RIGHT
            <br />
            RIGHT
        </div>
        <div class="clear"></div>
    </div>
</body>
</html>

左側のdivのオレンジ色の境界線が右側のdivの緑の境界線と重ならないのはなぜですか?

30
Michael

z-indexプロパティは、静的に配置された要素には適用されません。 z-indexを使用するには、CSSに静的以外の位置の値(相対、絶対、固定)も含める必要があります。

.left { float: left; width: 96px; background-color: red; border: 2px solid orange; z-index: 3; margin-right: -2px; position: relative; }
.right { float: left; width: 396px; background-color: #09c; border: 2px solid green; z-index: 2; position: relative; }

あなたが望むものをあなたに与えるでしょう。位置を追加しました。 .leftのz-indexを3(2から)に変更し、.rightのz-indexを2(3から)に変更しました。

65
Joshua Shannon

z-indexは、配置されていない要素には影響しません(例:position:absolute;

8
Brian Behrend

要素の上部にはpositionプロパティを使用します。 position:relative.leftに追加しています。

2
Gelio

マイナスmargin-left

.right { float: left; width: 396px; background-color: #09c; border: 2px solid green; z-index: 3; margin-left: -5px;}
0
BenB