console
<div class="contain">
<div class="f1"></div>
<div class="f2"></div>
<div class="f3"></div>
</div>
<div class="position1"></div>
<div class="position2"></div>
<p>编辑文本区域 hello word !</p>
.f1{
width:100px;
height:100px;
background-color:blue;
float:left;
}
.f2{
width:100px;
height:100px;
background-color:blue;
float:left;
}
.f3{
width:100px;
height:100px;
background-color:blue;
float:left;
}
.contain{
width:400px;
height:400px;
background-color:#fff0ff;
z-index:0;
}
p{
text-indent:2em;
text-transform:uppercase;
text-shadow:2px 5px 2px red;
}
.position1{
width:100px;
height:100px;
background-color:red;
position:relative;
left:20px;
top:20px;
z-index:2
}
.position2{
width:100px;
height:100px;
background-color:green;
position:fixed;
left:30px;
z-index:1;
}