Редкостное извращение
by ils_user
HTML
<!doctype html>
<html>
<head>
<title>Page</title>
</head>
<body>
<div class="wrapper">
<div class="text1">Что-то</div>
<div class="block">Блок height: 100px</div>
<div class="text2">Что-то margin-top: 100px</div>
</div>
</body>
</html>
CSS
.wrapper {
width: 200px;
background: lightblue;
margin: 0 auto;
}
.text1, .text2 {
background: lightgreen;
}
.block {
position: absolute;
left: 0;
right: 0;
height: 100px;
background: yellow;
}
.text2 {
margin-top: 100px;
}