Length of input type text

image

is there anyway to make the input type text appear til the end of the input type box while typing?

If I understood correctly, you want to show how many characters your user typed, right?

You can achieve this by using the .length attribute.
E.g. if your ng-model for the text is $scope.input, you can simply use $scope.input.length to get the numbers of character used and easily show it.

In my example it would be:
Characters: {{input.length}}