Answers for "how to remove underline from textfield in material ui"

3

material-ui textfield underline hide

<TextField
  fullWidth
  placeholder="Search..."
  InputProps={{ disableUnderline: true }}
 />
Posted by: Guest on July-30-2021
2

material ui textfield remove underline

inputProps={{
                                            underline: {
                                                "&&&:before": {
                                                    borderBottom: "none"
                                                },
                                                "&&:after": {
                                                    borderBottom: "none"
                                                }
                                            }
                                        }}
Posted by: Guest on June-09-2020

Code answers related to "how to remove underline from textfield in material ui"

Browse Popular Code Answers by Language