Can the row count of a text area in materialize css be initialized with a specific number using "rows='20'"? How can we adjust the default row count?
Here is an example of code that attempts to set the row count but doesn't work:
<div class="input-field col s12">
<textarea id="textarea1" class="materialize-textarea" rows="20" ></textarea>
<label for="textarea1">Text</label>
</div>