Показать сообщение отдельно
  #2 (permalink)  
Старый 15.11.2015, 12:55
Аватар для EmperioAf
Профессор
Отправить личное сообщение для EmperioAf Посмотреть профиль Найти все сообщения от EmperioAf
 
Регистрация: 15.01.2015
Сообщений: 622

Скоро придут люди с
display:flex
и покажут как правильно сделать, но пока можете вот так:
<!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 {
	width: 100%;
	height: 100px;
}

.container>div {
	display: inline-block;
	width: calc((100% - 300px)/2);
	height: 100px;
	background-color: red;
	margin-right: -4px;
}
.container .center {
	width: 300px;
	background-color: green;
}

</style>
</head>
<body>
<div class="container">
	<div></div>
	<div class="center"></div>
	<div></div>
</div>
</body>
</html>
Ответить с цитированием