JSFiddle - React, Tailwind, and code Playground

by Jean-Baptiste Audras

HTML

<div id='global'>
	<h1>Kimo's Cars</h1>
	<div class='articles'><!--
		--><div class='description'>
		<h2>Voiture version litre annee</h2>
		</div><!--
		--><div class='image'>
		</div>
	</div>
</div>

CSS

* {
	margin: 0px;
	padding: 0px;
}

#global {
	margin: auto;
	width: 1000px;
	height: auto;
} 

h1 {
	text-align: center;
	color: blue;
}

.articles {
	width: 100%;
	height: 200px;
	margin-top: 2px;
	border: 1px solid black;
}

.description {
	width: 75%;
	height: 100%;
	display: inline-block;
	background-color: grey;
}

h2 {
	text-align: center;
	color: blue;	
}

.image {
	width: 25%;
	height: 100%;
	display: inline-block;
	background-color: blue;
}