-2

I want to achieve effects like in this picture.

I do not know what CSS rules should I include to right side of container which has blue background and the left side has margin auto

enter image description here

Santhoshkumar
  • 780
  • 1
  • 16
  • 36
Mac
  • 141
  • 2
  • 2
  • 9

1 Answers1

0

you can use div with fixed width property and set float:right

#blue-column{
  width:70vw;
  height:200px;
  background-color:#118ded;
  float:right;
}
<div id="blue-column"></div>