HTML CSS examples for CSS Property:clip-path
Set clip-path: inset
<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>