зеркало из https://github.com/mozilla/pjs.git
33 строки
606 B
HTML
33 строки
606 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<!-- The interaction of "static position" with margin collapsing is not well
|
|
defined. In CSS 2.1, there is no hint regarding the expected rendering,
|
|
so this test may turn out invalid. -->
|
|
<style type="text/css">
|
|
#a {
|
|
height: 20px;
|
|
background-color: red;
|
|
margin-bottom: 20px;
|
|
}
|
|
#b {
|
|
width: 20px; height: 20px;
|
|
background-color: blue;
|
|
margin-top: 10px;
|
|
margin-bottom: 10px;
|
|
position: absolute;
|
|
}
|
|
#c {
|
|
height: 20px;
|
|
background-color: green;
|
|
margin-top: 20px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div id="a"></div>
|
|
<div id="b"></div>
|
|
<div id="c"></div>
|
|
</body>
|
|
</html>
|