美文网首页
简单布局

简单布局

作者: Alice丨殇 | 来源:发表于2018-10-21 13:17 被阅读0次

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>简单布局</title>
<style type="text/css">
*{
margin: 0;
padding: 0;
}
.head{
height: 49px;
background-color:red;
}
.head1{
height: 81px;
background-color: orange;
}
.list{
height: 53px;
background-color: yellow;
border-top: orange;
}
.advertising{
height: 85px;
width: 700px;
background-color: green;
margin-left: 284px;
margin: 20px 20px 20px 284px;
}
.advertising1{
height: 85px;
width: 180px;
background-color: green;
margin-left: 284px;
margin: 20px auto;
position: absolute;
top:183px;
left:1054px;

    }
    .slideshow{
        height: 330px;
        width: 950px;
        background-color: cyan;
        margin: 0 auto;
    }
    .slideshow1{
        height: 100%;
        width: 260px;
        background-color: purple;
        float: left;
    }
    .slideshow2{
        height: 100%;
        width: 470px;
        background-color: gray;
        float: left;
        margin: 0 0;
    }
    .slideshow3{
        height: 100%;
        width: 220px;
        background-color: red;
        float: left;
    
    }

    .plate{
        height: 85px;
        width: 950px;
        background-color: blue;
        margin: 20px auto;
    }
    .hot{
        height: 410px;
        width: 950px;
        background-color: cyan;
        margin: 0 auto;
    }
    .brand{
        height: 45px;
        width: 950px;
        background-color: green;
        margin: 20px auto;
    }
    .share{
        height: 85px;
        width: 700px;
        background-color: green;
        margin-left: 284px;
        margin: 20px 20px 20px 284px;
    }
    .share1{
        height: 85px;
        width: 180px;
        background-color: green;
        margin-left: 284px;
        margin: 20px auto;
        position: absolute;
        top:1238px;
        left:1054px;
    }
    .raise{
        width: 950px;
        height: 70px;
        background-color: red;
        margin: 0 auto;
    }
</style>

</head>
<body>

<div class="head"></div>
<div class="head1"></div>
<div class="list"></div>
<div class="advertising"></div>
<div class="advertising1"></div>
<div class="slideshow">
    <div class= slideshow1></div>
    <div class= slideshow2></div>
    <div class= slideshow3></div>
</div>
<div class="plate"></div>
<div class="hot"></div>
<div class="brand"></div>
<div class="share"></div>
<div class="share1"></div>
<div class="raise"></div>

</body>
</html>

[图片上传中...(479d897cc6e4af00e92e41322bf1b40.png-49584f-1540098992048-0)] image.png

相关文章

  • Android 性能优化方法

    布局优化1.1 布局优化的思想很简单,就是减少布局文件层级如果比较简单的布局那么用LinearLayout 如果复...

  • 简单布局

    简单布局 *{margin: 0;padding: 0;}.head{he...

  • 简单布局

    css

  • 简单布局

    名鞋库 样式 *{margin: 0;padding: 0;} .d1{wi...

  • 简单布局

    第一列第5个布局 inline-block实现flex实现 第2列第1个布局 float实现flex实现 第3列第...

  • 简单布局

    Document

  • 简单布局

    本来生活网 /清除默认样式/{padding:0;margin:0;bor...

  • 简单布局

  • Flutter学习记录-布局

    Flutter学习记录-汇总 边做边学 布局简单有: Row:横向布局 Column:纵向布局 先做一个简单的同时...

  • 总结随笔

    网页布局 - 单列布局 - 双列布局 - 三列布局 - 混合布局 单列布局 其中单列布局最为简单,一般应用于搜索引...

网友评论

      本文标题:简单布局

      本文链接:https://www.haomeiwen.com/subject/yhrbzftx.html