学习目标:
掌握css背景图片和浮动样式
学习内容:
1、 css的背景图片 2、 css的浮动定位
学习时间:
2021年1月10日
学习产出:
1、 技术笔记 1 遍 2、CSDN 技术博客 1 篇
css的背景图片
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
<style type="text/css">
body{
width: 100%;
height: 500px;
padding: 0;
margin: 0;
}
.airplane{
width: 100%;
padding-top: 50%;
margin: 0 auto;
background-image: url("//img.58cdn.com.cn/ui6/my/images/reg-bg.png");
background-repeat: no-repeat;
background-size: 100%;
background-attachment: fixed;
background-position: right;
}
</style>
</head>
<body>
<div class="airplane">
</div>
<div class="important">
</div>
</body>
</html>
css的浮动定位
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
<style type="text/css">
#d0,p{
width: 200px;
border: 1px solid red;;
}
#d1,#d2,#d3{
width: 100px;
height: 100px;
margin: 5px;
border: 1px solid red;
}
#d1,#d2,#d3{
float: left;
}
</style>
</head>
<body>
<div id="d0">
<div id="d1">d1</div>
<div id="d2">d2</div>
<div id="d3">d3</div>
</div>
<p>定位时观察我的位置</p>
</body>
</html>