Answers for "make contrast darker css"

CSS
0

how to make background more darker with css

/* makes your image darker */
background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
url(your image location)
Posted by: Guest on May-03-2021
0

css background darker

body{
 background:
        /* top, transparent black, faked with gradient */ 
        linear-gradient(
          rgba(0, 0, 0, 0.7), 
          rgba(0, 0, 0, 0.7)
        ),
        /* bottom, image */
        url(https://images.unsplash.com/photo-1614030424754-24d0eebd46b2);
    }
 Run code snippet
Posted by: Guest on March-17-2022

Code answers related to "make contrast darker css"

Browse Popular Code Answers by Language