| Property | Mozilla Output | Style | |
|---|---|---|---|
| Div one | visibility | visibility |
<div id="d1" style= »
"background-color: #ccffcc;
position: absolute;
top: 10px; left: 10px;
width:100px; height: 100px;">
|
| background-color | rgb(204,255,204) | ||
| left, top, width, height | 10px, 10px, 100px, 100px | ||
| Div two | visibility | visibility |
<style type="text/css">
#d2 {
visibility: visible;
background-color: #ccccff;
position: absolute;
top: 10px; left: 110px;
width: 100px; height:100px;
}
</style>
|
| background-color | background-color | ||
| left, top, width, height | left, top, width, height | ||
| Div three | visibility | visibility |
<style type="text/css">
#d3 {
position: absolute;
top: 10px; left: 210px;
</style>
<div id="d3"
style="background-color: cyan">
|
| background-color | cyan | ||
| left, top, width, height | left, top, width, height |