@charset "utf-8";

#conteneur
{
	display: flex;
	border: 2px solid #444;
	height: 200px;	 
}

.element
{
	width: 150px;
	height: 100px;
}

.element:nth-child(1)
{
	background-color: orange;
	height: 200px;
}

.element:nth-child(2)
{
	background-color: blue;	
}

.element:nth-child(3)
{
	background-color: #ad6;	
}