Search
 
SCRIPT & CODE EXAMPLE
 

CSS

sideways linear gradient

/* A gradient tilted 45 degrees,
   starting blue and finishing red */
linear-gradient(45deg, blue, red);

/* A gradient going from the bottom right to the top left corner,
   starting blue and finishing red */
linear-gradient(to left top, blue, red);

/* Color stop: A gradient going from the bottom to top,
   starting blue, turning green at 40% of its length,
   and finishing red */
linear-gradient(0deg, blue, green 40%, red);

/* Color hint: A gradient going from the left to right, 
   starting red, getting to the midpoint color 
   10% of the way across the length of the gradient, 
   taking the rest of the 90% of the length to change to blue */ 
linear-gradient(.25turn, red, 10%, blue);

/* Multi-position color stop: A gradient tilted 45 degrees, 
   with a red bottom-left half and a blue top-right half, 
   with a hard line where the gradient changes from red to blue */
linear-gradient(45deg, red 0 50%, blue 50% 100%);
Comment

PREVIOUS NEXT
Code Example
Css :: css text slider animation 
Css :: CSS Text Shadow Effect( cool) 
Css :: font shorthand css 
Css :: css tricks stretch content full witdh 
Css :: scss media query 
Css :: border-width 
Css :: Cambiar el color de texto al hacer scroll css 
Css :: width 33 css 
Css :: css scroll fixed content 
Css :: css affect all child elements 
Css :: Load hidden image to HTML 
Css :: elementor vertical line 
Css :: max character css 
Css :: css make ul on multiple lines 
Css :: vertical divider between my flexbox 
Css :: css add circle to icon cart 
Css :: css overflow 
Css :: bootstrap z-index 
Css :: device-pixel-ratio css 
Css :: media queries import file 
Css :: css change class name start with 
Css :: select first 5 child css 
Css :: float: down css 
Css :: css blur overlay 
Css :: transition for css 
Css :: scss color loop 
Css :: nth-of-type(2):before 
Css :: allfont cdn 
Css :: jquery woocommerce disable add to cart css 
Css :: veritical align inline-block checkbox element 
ADD CONTENT
Topic
Content
Source link
Name
6+6 =