Input field with left up corner button - HTML CSS CSS Widget

HTML CSS examples for CSS Widget:Button

Description

Input field with left up corner button

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  a2s.c o m-->
   width:401px;
   height:201px;
   border:2px solid Chartreuse;
}

.btn {
   position:relative;
   background:red;
   color:yellow;
}
</style> 
 </head> 
 <body> 
  <div contenteditable="true"> 
   <a href="#" class="btn">Lo</a> 
  </div>  
 </body>
</html>

Related Tutorials