博客列表 >0705float作业

0705float作业

杨发国的博客
杨发国的博客原创
2019年07月08日 18:32:22412浏览

作业1:外边距

html文件;

实例

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <link rel="stylesheet" href="./css.css">
    <title>外边距margin</title>
</head>
<body>
<div class="box1"></div>
<div class="box2"></div>
<hr>
<div class="box3">
    <div class="box4"></div>
</div>
<hr>
<div class="box5">
</body>
</html>

运行实例 »

css文件

实例

.box1
{
    width: 100px;
    height: 100px;
    background-color: aqua;
}
.box2
{
    width: 100px;
    height: 100px;
    background-color: blue;
}
.box1
{
    margin-bottom: 30px;
}
.box2
{
    margin-top: 50px;
}
.box3
{
    width: 200px;
    height: 200px;
    background-color: blue;
}
.box4
{
    width: 100px;
    height: 100px;
    background-color: yellow;
}
.box3
{
    padding-top: 50px;
    height: 150px;
}
.box5
{
    width: 100px;
    height: 100px;
    background-color: yellow;
    margin: auto;
}

运行实例 »

点击 "运行实例" 按钮查看在线实例

1.png

浮动作业2:

实例

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <link rel="stylesheet" href="stly1.css">
    <title>float布局</title>
</head>
<body>
<div class="box1"></div>
<div class="box2"></div>
<div class="box3"></div>
<div class="box4"></div>
</body>
</html>

运行实例 »

点击 "运行实例" 按钮查看在线实例

实例

.box1
{
    width: 150px;
    height: 150px;
    background-color: aqua;
}
.box2
{
    width: 180px;
    height: 180px;
    background-color: blue;
}
.box1
{
    float:left;
}
.box2
{
    float:left;
}
.box3
{
    width: 200px;
    height: 200px;
    background-color: aquamarine;
}
.box3{
    float:right;
}
.box4
{
    width: 100%;
    height: 60px;
    background-color: darkslategray;
}
.box4
{
    /*clear: left;*/
    /*clear: right;*/
clear: both;
}

运行实例 »

点击 "运行实例" 按钮查看在线实例

运行效果图

2.png

相对定位与绝对定位

实例

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <link rel="stylesheet" href="style2.css">
    <title>相对定位</title>
</head>
<body>
<div class="parent">
<div class="box1">1</div>
<div class="box2">2</div>
<div class="box3">3</div>
<div class="box4">4</div>
<div class="box5">5</div>
</div>
</body>
</html>

运行实例 »

点击 "运行实例" 按钮查看在线实例

css

实例

.parent
{   width: 450px;
    height: 450px;
    border: 1px dotted:black;
    position: absolute;
}
.box1
{   position: absolute;
    width: 150px;
    height: 150px;
    background-color: aqua;
}
.box2
{
    width: 150px;
    height: 150px;
    background-color: blue;
}
.box3
{
    width: 150px;
    height: 150px;
    background-color: yellowgreen;
}
.box4
{
    width: 150px;
    height: 150px;
    background-color: green;
}
.box5
{
    width: 150px;
    height: 150px;
    background-color: red;
}
.box1{
    position: absolute;
    left:150px;
    }
.box2{
    position: absolute;
    top:150px;
    left:300px;
}
.box3{
    position: absolute;
    left:150px;
    top:150px;
}
.box4{
    position: absolute;
    left:150px;
    top:300px;
}
.box5{
    position: absolute;
   top:150px;
}

运行实例 »

点击 "运行实例" 按钮查看在线实例

运行效果:

3.png


声明:本文内容转载自脚本之家,由网友自发贡献,版权归原作者所有,如您发现涉嫌抄袭侵权,请联系admin@php.cn 核实处理。
全部评论
文明上网理性发言,请遵守新闻评论服务协议