Currently, I am exploring a sample in Angular Material. It appears that the md-input-container
tag is taking up a substantial amount of space by default. The output is shown below:
https://i.sstatic.net/hQgpT.png
However, I have come across the md-input-content
tag, which occupies less space as demonstrated here:
https://i.sstatic.net/TMhin.png
I am uncertain about how to implement this. Here is an example of my code using the md-input-container
tag:
<md-input-container class="md-block" flex-sm>
<label>Name</label>
<input md-maxlength="50" required name="name" ng-model="user.name"/>
</md-input-container>