Сообщение от Ruslan_xDD
|
Проще тогда уж так:
|
Ок. Я стараюсь избегать применений табличной вёрстки (кроме применения по назначению)
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>ГГ</title>
<style>
* {
margin:0;
padding: 0;
outline: none;
}
.container {
display: table;
table-layout: fixed;
width: 100%;
height: 100px;
}
.container div {
display: table-cell;
background: red;
}
.container .center {
width:300px;
background: green;
}
</style>
</head>
<body>
<div class="container">
<div></div>
<div class="center"></div>
<div></div>
</div>
</body>
</html>