美文网首页
前端-第三天

前端-第三天

作者: 看三小 | 来源:发表于2018-11-04 18:50 被阅读11次

<!DOCTYPE html>
<html lang="en"><head>
<meta charset="UTF-8">
<title>浮动</title>
<style type="text/css">

    .s1{
        float: left;
        width: 100px;
        height: 100px;
        background-color: yellow;
    }
</style>

</head>
<body>
<div class="box1">a</div>
<span class="s1">hello</span>

</body></html>

<!DOCTYPE html>
<html lang="en"><head>
<meta charset="UTF-8">
<title>简单布局</title>
<style type="text/css">

    *{
        margin: 0;
        padding: 0;
    }

    .header{
    
        width: 1000px;
        height: 150px;

        background-color: yellowgreen;
        margin: 0 auto;
    }


    .content{
        width: 1000px;
        
        height: 400px;
        
        background-color: orange;
    
        margin: 10px auto;
    }


    .left{
        width: 200px;
        height: 100%;
        background-color: skyblue;
    
        float: left;
    }
    .center{
        width: 580px;
        height: 100%;
        background-color: yellow;
    
        float: left;
    
        margin: 0 10px;
    }
    .right{
        width: 200px;
        height: 100%;
        background-color: pink;
        
        float: left;
    }


    .footer{
    
        width: 1000px;
    
        height: 150px;
    
        background-color: silver;

        margin: 0 auto;
    }
</style>

</head>
<body>

<div class="header"></div>


<div class="content">

    <div class="left"></div>

    <div class="center"></div>

    <div class="right"></div>
</div>


<div class="footer"></div>

</body></html>

相关文章

  • 前端第三天

    1.首先我想说的是,学习HTML开始的时候是从文开始的。我们从标题开始。我们应该尽量使用h标签。因为我们浏览网页的...

  • 前端第三天

    前端第三天 目录: 盒模型 边界圆角 a_img_list 标签 伪类选择器 盒模型布局 一、盒模型** 1、盒模...

  • 前端-第三天

    浮动 a hello 简单布局

  • 前端第三天

    显示与隐藏 display:none/block溢出

  • 前端第三天知识总结

    兄弟选择器 兄弟元素选择器 /*为span后的一个p元素设置一个背景颜色为...

  • 前端开发学习第三天

    介绍一下前端开发的工具。 因为我自己也是新手,所以查了很多的资料,新手一般情况下都选择Dreamweaver 还有...

  • 让渐变成为滚动的进度条吧

    前端入坑纪 53 日更计划第三天,如题,以前看到过类似的效果。今天便来实践一番... 好,详解如下! OK,fir...

  • 前端学习第三天- margin和浮动

    想让盒子(div)居中 1 让盒子中的内容居中--文本或者行内,行内块元素水平居中: 让盒子本身水平居中,而不是内...

  • 前端学习指南第三天:对象

    对象是一种复合型的值,也可以说是属性的无序集合。javascript对象还可以从一个称为原型(prototype)...

  • 前端文章系列

    【前端】从0.1开始,创建第一个项目 【前端】初识HTML 【前端】HTML标签 【前端】HTML属性 【前端】C...

网友评论

      本文标题:前端-第三天

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