定位法
Posted hy96
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了定位法相关的知识,希望对你有一定的参考价值。
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>浮动</title>
<style>
*
padding: 0;
margin: 0;
.container
width: 100%;
background-color: green;
min-height: 500px;
position: relative;
.left
width: 200px;
height: 300px;
background-color: pink;
position: absolute;
top: 0;
left:0;
position: absolute;
.right
width: 150px;
height: 300px;
background-color: purple;
position: absolute;
top: 0;
right: 0;
.center
height: 300px;
margin-left: 200px;
margin-right: 150px;
background-color: blue;
</style>
</head>
<body>
<div class="container">
<div class="left"></div>
<div class="right"></div>
<div class="center">
5236
</div>
</div>
</body>
</html>
与浮动法原理一样
以上是关于定位法的主要内容,如果未能解决你的问题,请参考以下文章