慕课网 前端就业班 float浮动 编程练习 2-6

补全下面的代码,得到这样的效果:
慕课网 前端就业班 float浮动 编程练习 2-6_第1张图片

任务

1、给 float 添加相应属性使得 class 名为 div1 的 div 左浮动
2、使得 class 名为 div2 的 div 右浮动
3、使得 div3 继承父元素的浮动属性

参考代码


<html>
<head>
    <meta charset="UTF-8">
    <title>floattitle>
    <style>
        .div1{
            width: 100px;
            height: 100px;
            background: red;
            float: left;
        }
        .div2{
            width: 300px;
            height: 300px;
            background: blue;
            float: right;
        }
        .div3{
            width: 100px;
            height: 100px;
            background: green;
            float: inherit;
        }
    style>
head>
<body>
    <div class="div1">div>
    <div  class="div2">
        <div class="div3">div>
    div>
body>
html>


你可能感兴趣的:(其他,html,css,css3)