input box outline css code example
Example 1: html remove border from textarea
textarea {
border: none;
background-color: transparent;
resize: none;
outline: none;
}
Example 2: add border to input css
border: none;
border-bottom: 1px solid blue;
Example 3: text input layout outline box
style="@style/Widget.MaterialComponents.TextInputLayout.OutlinedBox"