Search
 
SCRIPT & CODE EXAMPLE
 

CSS

progress bar with width gradient

.progress-bar-container {
  height: 50px;
  margin: 50px 0px;
  background: black;
  position:relative; /* relative here */
}

.progress-bar-indicator {
  height: 100%;
  border-radius: 25px;
   /* this will do the magic */
  -webkit-mask:linear-gradient(#fff 0 0);
          mask:linear-gradient(#fff 0 0);
}
.progress-bar-indicator::before {
  content:"";
  position:absolute;
  top:0;
  left:0;
  right:0;
  bottom:0;
  background-image: linear-gradient(to right, red, green, blue); /* your gradient here */
}
Comment

PREVIOUS NEXT
Code Example
Css :: htacess mono-site 
Css :: making a div vertically scrollable using css 
Css :: html button click blue border 
Css :: css: custom font and color 
Css :: ausgewählter text farbe ändern css 
Css :: Hoow to open a css class in css 
Css :: media queries css and logic 
Css :: grippy css 
Css :: truncate long line with dots 
Css :: pacSelectFirst( submit button 
Css :: change button color ultimate member plugin 
Css :: onfocusout css 
Css :: flex grow css 
Css :: css function to add and subtract 
Css :: Responsive testimonial slider HTML CSS 
Css :: alinhar ao centro align item css 
Css :: css margin-top 1px 9 
Css :: bast css 3d images gallery code 
Css :: css geight 
Css :: Table Print Cut off right side 
Css :: background css hachures 
Css :: button slant right with icon 
Css :: tailwind css checked 
Css :: if css 
Css :: css grid media queries 
Css :: chrome extension detect copy action 
Css :: reorder images in mobile web developer 
Css :: hard cutoff gradient 
Css :: scale css 
Css :: p{ color: blue; font-size: 14px; } 
ADD CONTENT
Topic
Content
Source link
Name
6+9 =