Asperant,
Сымитируй таблицами, или используй модуль флексбокса. С блочно-строчным подходом больше возьни.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<style>
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
.ad1 {
*!*
display: table;
*/!*
width: 200px;
margin: 30px;
height: 305px;
}
.ad1 > * {
display: table-cell;
height: 258px;
outline: 1px solid #000;
}
.ad2 {
display: table-row;
width: 100%;
height: 42px;
}
.ad3 {
width: 32px;
}
.ad4 {
width: 136px;
}
.ad5 {
width: 32px;
}
</style>
</head>
<body>
<div class="ad1">
<div class="ad2"></div>
<div class="ad3"></div>
<div class="ad4"></div>
<div class="ad5"></div>
</div>
</body>
</html>