Create right arrow for button like text - HTML CSS CSS Widget

HTML CSS examples for CSS Widget:Button

Description

Create right arrow for button like text

Demo Code

ResultView the demo in separate window

<html>
 <head> 
  <meta name="viewport" content="width=device-width, initial-scale=1"> 
  <style id="compiled-css" type="text/css">
div {<!--from  w w w . j  a v  a 2s.  c  o  m-->
   background-color:Chartreuse;
   border-radius:11px;
   padding:0.6em 31px .6em .6em;
   float:left;
   position:relative;
}

.right-arrow:after {
   content:'';
   content:'';
   vertical-align:middle;
   border:21px solid yellow;
   border-left-color:blue;
   border-width:9px 16px;
   position:absolute;
   margin-left:9px;
}
</style> 
 </head> 
 <body> 
  <div> 
   <h5 style="margin: 0;position: relative;" class="right-arrow">LEARN MORE</h5> 
  </div>  
 </body>
</html>

Related Tutorials