<!DOCTYPE html>
<html>
<body>
<style>
   #myfile:after {
     content:"123"!important;
   }
</style>
  <input type="file" id="myfile" name="myfile"><br><br>
</body>
</html>I can change the text with css but the text "No file chosen" is not removed.
How can I remove this text? Or how can I add text to the right side of the input in another way.
 
    