|
<div id="Container">
<div id="Red"></div>
<div id="Blue"></div>
</div>
|
<style type="text/css">
#Container{
width:600px;
height:600px;
background-color:BLACK;
position:{{ containerposition }};
}
#Red{
width:300px;
height:300px;
background-color:Red;
position:{{ redposition }};
left:{{ leftred }}px;
top:{{ topred }}px;
z-index:{{ redzindex }};
}
#Blue{
width:200px;
height:200px;
background-color:Blue;
position:{{ blueposition }};
left:{{ leftblue }}px;
top:{{ topblue }}px;
z-index:{{ blueindex }};
}
</style>
|
| |