搜索
您的当前位置:首页正文

day31-简单布局

来源:二三娱乐
<!DOCTYPE html>
<html>
    <head>
        <meta charset="UTF-8">
        <title></title>
        <style type="text/css">
            .all {
                position: relative;
                width: 2000px;
                left: 200px;
                top: 60px;
                overflow: hidden;
            }
            .all div {
                float: left;
                width: 600px;
                height: 700px;
                margin-left: 50px;
                margin-bottom: 50px;
                background-color: white;
            }
        </style>
    </head>
    <body>
        <div style="text-align: center;">
            <h1 style="display:inline-block; width: 1000px; text-align: center;">—— 居家优品 ——</h1>
        </div>
        <div style="position: relative; left: 200px; width: 2000px; height: 50px;top: 60px;"></div>
        <div class="all">
            <div style="overflow: hidden; position: relative;">
                <div style="position: absolute; border: 10px solid black; width: 550px; height: 650px; margin: 30px 30px 0px 0px; z-index: 1;"></div>
                <div style="position: absolute; width: 550px; height: 650px; margin: 0px 0px 50px 50px; z-index: 2;">
                    <img src="img/1_340x420.jpg" style="width: 550px; height: 650px; margin: 0;"/>          
                </div>
            </div>
            <div style="overflow: hidden; position: relative;">
                <div style="position: absolute;width: 580px; height: 300px;margin-top: 5px; margin-left: 10px; margin-right: 10px;">
                    <img src="img/2_350x180.jpg" style="width: 580px; height: 350px; margin: 0;"/>
                </div>
                <div style="position: absolute;width: 285px; height: 330px;margin-top: 365px; margin-left: 10px;">
                    <img src="img/3_170x180.jpg" style="width: 285px; height: 330px; margin: 0;"/>
                </div >
                <div style="position: absolute;width: 285px; height: 330px;margin-top: 365px; margin-left: 305px;">
                    <img src="img/4_170x180.jpg" style="width: 285px; height: 330px; margin: 0;"/>
                </div>
            </div>
            <div style="overflow: hidden; position: relative;">
                <div style="position: absolute;width: 580px; height: 300px;margin-top: 5px; margin-left: 10px; margin-right: 10px;">
                    <img src="img/5_350x180.jpg" style="width: 580px; height: 350px; margin: 0;"/>
                </div>
                <div style="position: absolute;width: 285px; height: 330px;margin-top: 365px; margin-left: 10px;">
                    <img src="img/6_170x180.jpg" style="width: 285px; height: 330px; margin: 0;"/>
                </div >
                <div style="position: absolute;width: 285px; height: 330px;margin-top: 365px; margin-left: 305px;">
                    <img src="img/7_170x180.jpg" style="width: 285px; height: 330px; margin: 0;"/>
                </div>
            </div>
        </div>
    </body>
</html>

效果图:


image.png
Top