利用浮动元素布局,代码中我的右中怎么显示不出来

来源:13-4 起飞咯 - 浮动模型

慕的地4113984

2017-05-18 11:22

<!DOCTYPE HTML>


<html>

    <head>

        <meta http-equiv="content-type" content="text/html;charset=utf-8">

        <title>利用浮动元素尝试页面布局</title>


        <style type="text/css">


            /*清楚固有样式*/

            * {

                padding:0;

                margin:0;

            }


            /*设置头部div*/

            .header{

                margin-top:200px;

                width:1000px;

                height:100px;

                background-color:yellow;

                /*设置居中*/

                margin:0 auto;

            }


            /*设置content div*/

            .content{

                width:1000px;

                height:400px;

                background-color:orange;

                /*设置居中*/

                margin:10px auto;

            }


            /*设置左中div*/

            .left{

                width:200px;

                height:400px;

                background-color:skyblue;

                /*设置左浮动*/

                float:left;

            }


            /*/*设置center div/*/

            .center{

                width:580px;

                height:400px;

                background-color:green;

                /*设置中间边距*/

                margin-left:10px;

                margin-right:10px;

                float:left;

            }


            /*设置右中div*/

            .right{

                width:200px;

                height:400px;

                background-color:skyblue;

                float:left;

            }


            /*设置footer div*/

            .footer{

                width:1000px;

                height:100px;

                background-color:black;

                margin:0 auto;

            }

        </style>

    </head>


    <body>

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

            

        <div class="content">

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

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

            <div calss="right"></div>

        </div>


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

    </body>

</html>


写回答 关注

3回答

  • 慕先生0785041
    2017-05-18 11:48:00
    已采纳

    因为你在写代码是class="right"时,class写成了calss,所以没引用到样式


    慕的地411...

    非常感谢!

    2017-05-22 12:03:35

    共 1 条回复 >

  • qq_漂洋过海来看你_1
    2017-05-18 11:55:30

    代码写错了   <div calss="right"></div> 这样能出来才有鬼了  class 看看错哪了



  • 慕田峪888
    2017-05-18 11:54:47

    没有使用text-align?

初识HTML(5)+CSS(3)-升级版

HTML(5)+CSS(3)基础教程8小时带领大家步步深入学习标签用法和意义

1226117 学习 · 18236 问题

查看课程

相似问题