CSS Background style order
Show the CSS style result if placing element in different order sequence.
by KELVIN LEE
HTML
<div style="background-color: rgba(255,255,0,0.4); min-height:200px; background: url('/images/bg.jpg'); background-size: cover; max-width: 100%;">Sample 1</div>
<div style="background: url('/images/bg.jpg'); background-size: cover; max-width: 100%; background-color: rgba(255,255,0,0.4); min-height:200px;">Sample 2</div>