Сообщение от ksa
|
Флексбокс в этом деле не помощник...
|
<!DOCTYPE html>
<html>
<head>
<style>
.container {
display: flex;
width: 100%;
height: 100px;
}
.container div {
flex-grow: 1;
background: red;
}
.container .center {
width: 300px;
flex-grow: 0;
background: green;
}
</style>
</head>
<body>
<div class="container">
<div></div>
<div class="center"></div>
<div></div>
</div>
</body>
</html>