Search
 
SCRIPT & CODE EXAMPLE
 

CSS

css gradient border

  box-sizing: content-box;
  border-width: 8px;
  border-style: solid;
  border-image: linear-gradient(to right bottom, #260B3C, #a053df);
  border-image-slice: 1;
Comment

gradient border with border radius

.rounded-corners-gradient-borders {
  width: 300px;
  height: 80px;
  border: double 4px transparent;
  border-radius: 80px;
  background-image: linear-gradient(white, white), radial-gradient(circle at top left, #f00,#3020ff);
  background-origin: border-box;
  background-clip: content-box, border-box;
}
Comment

rounded gradient border css


div{
  width: 300px;
  height: 80px;
  border: double 5px transparent;
  border-radius: 30px;
  background-image: linear-gradient(white, white),         /*here must be*/
                    linear-gradient(to right, green, gold);    /*both gradients*/
  background-origin: border-box;
  background-clip: content-box, border-box;
}
Comment

linear gradient border

div-border-and-content-background {
  border-top: double 5px transparent;
  
  /* first gradient is for card background, second for border background */
  background-image: linear-gradient(white,white), linear-gradient(to right, grey, black);
  background-clip: padding-box, border-box;
  background-origin: border-box;
  }
Comment

gradient border

.btn-gradient-border {
  color: rgb(var(--text-color));
  border: 2px double transparent;
  background-image: linear-gradient(rgb(13, 14, 33), rgb(13, 14, 33)), radial-gradient(circle at left top, rgb(1, 110, 218), rgb(217, 0, 192));
  background-origin: border-box;
  background-clip: padding-box, border-box;
}
Comment

CSS Border Gradient

@import url('//raw.githubusercontent.com/necolas/normalize.css/master/normalize.css');

html {
    /* just for showing that background doesn't need to be solid */
    background: linear-gradient(to right, #DDD 0%, #FFF 50%, #DDD 100%);
    padding: 10px;
}

.grounded-radiants {
    position: relative;
    border: 4px solid transparent;
    border-radius: 16px;
    background: linear-gradient(orange, violet);
    background-clip: padding-box;
    padding: 10px;
    /* just to show box-shadow still works fine */
    box-shadow: 0 3px 9px black, inset 0 0 9px white;
}

.grounded-radiants::after {
    position: absolute;
    top: -4px; bottom: -4px;
    left: -4px; right: -4px;
    background: linear-gradient(red, blue);
    content: '';
    z-index: -1;
    border-radius: 16px;
}
Comment

css border top linear gradient

.bordertest {
    height:300px;
    width:300px;
    border-top:30px solid #c4268c;
    background:#000;
    position:relative;
    margin:1em;
}
.bordertest:first-child:before {
    content:'';
    position:absolute;
    width:100%;
    height:30px;
    background:linear-gradient(to left, #c4268c, #9a0b72);
    top:-30px;
    left:0;
}
Comment

PREVIOUS NEXT
Code Example
Css :: scss responsive container 
Css :: flexbox navbar fixed top 
Css :: css bottom 
Css :: css color black 
Css :: selenium find element by css selector 
Css :: css put background on top of another background image 
Css :: terminal check time 
Css :: how to stretch a font taller css 
Css :: how to select child when hover on parent element css 
Css :: fira code 
Css :: wordpress theme Adding style.css in function.php 
Css :: remove clicked button border 
Css :: alternate css animation 
Css :: grid repeat css 
Css :: remove input border on focus 
Css :: CSS Conic Gradients 
Css :: css text shadow 
Css :: webkit box shadow not working 
Css :: font shorthand 
Css :: Modify your placeholder 
Css :: line height tailwind 
Css :: Load hidden image to HTML 
Css :: login page design html css 
Css :: change hr tag width css 
Css :: how to put different p elements next to each 
Css :: nibabel ValueError: w2 should be positive, but is 
Css :: how to style ul circles black in css 
Css :: centralizing a table with css 
Css :: new line ::after class 
Css :: float: down css 
ADD CONTENT
Topic
Content
Source link
Name
5+3 =