Horje
button slant right with icon Code Example
button slant right with icon
.outer {
  position: relative;
  height: 75px;
  width: 300px;
  text-align: center;
  line-height: 75px;
  color: white;
  text-transform: uppercase;
}
.outer:before,
.outer:after {
  position: absolute;
  content: '';
  top: 0px;
  height: 100%;
  width: 55%;
  background: purple;
  border: 2px solid white;
  border-left-width: 3px;
  z-index: -1;
}
.outer:before {
  left: 0px;
  border-radius: 20px;
  border-right: none;
  transform: skew(20deg);
  transform-origin: top left;
  background: seagreen;
  border-color: red;
}
.outer:after {
  right: 0px;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  border-left: none;
  background: yellowgreen;
  border-color: maroon;
}

/* Just for demo of responsive nature */

.outer{
  transition: all 1s;
}
.outer:hover{
  height: 100px;
  width: 400px;
  line-height: 100px;
}
body{
  background: lightblue;
}
button slant right with icon
<div class='outer'>
  Call me back
</div>




Css

Related
width height samsung note 20 screen Code Example width height samsung note 20 screen Code Example
python ssl insecurerequestwarning remove Code Example python ssl insecurerequestwarning remove Code Example
i need show the message for when we are clicking routing page in anularjs Code Example i need show the message for when we are clicking routing page in anularjs Code Example
comments in css Code Example comments in css Code Example
calculate min number in css Code Example calculate min number in css Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
10