Set clip-path: inset - HTML CSS CSS Property

HTML CSS examples for CSS Property:clip-path

Description

Set clip-path: inset

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">

input[type=date] {
   border: 0;
   clip-path: inset(0 17px 0 0);<!--   www . j a  va2 s .  c  o  m-->
   width: 120px
}


      </style> 
 </head> 
 <body> 
  <input id="date" type="date" value="2017-06-01">  
 </body>
</html>

Related Tutorials