HTML CSS examples for CSS Widget:Button
Input field with left up corner button
<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>