Answers for "how to split a background in two colors"

CSS
1

how to split a background into two color in css

.logindiv {
  height: 200px;
  width: 200px;
  background: linear-gradient(to bottom, #1F4E79 0%, #1F4E79 50%, #ddd 50%, #ddd 100%);
}
Posted by: Guest on October-10-2020

Code answers related to "how to split a background in two colors"

Browse Popular Code Answers by Language