Search code examples
htmlcssmaterialize

MaterializeCSS tall input


I have a MaterializeCSS input field which I want to be taller. I've tried setting a class "large" on the <div class="input-field"> and on the <input> itself, but that doesn't seem to do anything. Setting the css font-height makes the text larger but the input field itself stays the same size.

Is there any way to make a large MaterializeCSS input field?

Thank you!


Solution

  • Add those CSS lines to input, it will make the text higher and visible

    .validate{
        font-size: 100px;
        height: 100px;
    }
    

    enter image description here