Answers for "background half color css"

CSS
2

how to give 2 different background color css

background: repeating-linear-gradient(#74ABDD, #74ABDD 49.9%, #498DCB 50.1%, #498DCB 100%);
Posted by: Guest on October-14-2020
0

css background half one color the other half another color

div{
    	width:400px;
    	height:350px;
    	background: linear-gradient(to right, blue 50%, yellow 50%);
    }
Posted by: Guest on April-30-2021

Code answers related to "background half color css"

Browse Popular Code Answers by Language