Add two background color using css

{ // deep_execution_view
const authorName = "Ankit Agrawal";
//
const publishDate = "August 31, 2016";
<div class="demoItem"></div>
<style>
.demoItem
{
	background: linear-gradient(90deg, #1E7DDB 50%, #2c7055 50%);;
	height:400px;
}
</style>
}