[Select] How to disable the underline?
See original GitHub issuein Select
component, property inputProps={{ disableUnderline: true }}
doesn’t do anything, it doesn’t disable input’s underline, but I can disable it somehow, indicating clearly
input={<Input disableUnderline />}
, I think its a bug, can you fix it?
Issue Analytics
- State:
- Created 6 years ago
- Reactions:19
- Comments:6 (1 by maintainers)
Top Results From Across the Web
how to remove the underline of material-ui select?
Add the disableUnderline prop to Select . Here's a modified version of your sandbox: ...
Read more >[Select] How to disable the underline? · Issue #10271 - GitHub
in Select component, property inputProps={{ disableUnderline: true }} doesn't do anything, it doesn't disable input's underline, ...
Read more >How to Remove the Underline from Links in CSS - HubSpot Blog
Below we'll walk through how to define this property to completely remove the underline from links on your HTML site or Bootstrap site....
Read more >How to remove underline for anchors tag using CSS?
The underline can be easily remove by using text-decoration property. The text-decoration property of CSS allows to decorate the text according ...
Read more >Remove the underline from hyperlink text - Microsoft Support
Right-click the hyperlink text, and then click Remove Hyperlink. · On the Insert tab, in the Illustrations group, click Shapes, and then under...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
@bife1 The
Select
component inherited the properties of theInput
component.disabledUnderline
is implemented by theInput
component. So the answer to your problem is:https://codesandbox.io/s/84jkyqpvp0
@oliviertassinari Maybe you could add this to the doc, Select API page? I ran into the same issue, read the docs, tried
inputProps
which didn’t work, then googled this solution.