Feature request `initialHeight` or `minHeight`
See original GitHub issueI’m setting the initialHeight
or minHeight
with minRows={2}
but it’s not exactly. There is a possibility to add an initial height.
Issue Analytics
- State:
- Created 2 years ago
- Reactions:5
- Comments:7 (3 by maintainers)
Top Results From Across the Web
min-height - CSS: Cascading Style Sheets - MDN Web Docs
The min-height CSS property sets the minimum height of an element. It prevents the used value of the height property from becoming smaller ......
Read more >WPF - Trying to set the MinHeight of resizeable window based ...
I am trying to set the MinHeight / MinWidth of a resizeable window based on its initial height (when SizeToContent="WidthAndHeight").
Read more >CSS min-height Property - W3Schools
Well organized and easy to understand Web building tutorials with lots of examples of how to use HTML, CSS, JavaScript, SQL, PHP, Python,...
Read more >Define maximum/minimum element height/width when ...
Adobe XD Feedback : Feature Requests & Bugs · UserVoice Terms of Service & Privacy Policy · Adobe Terms of Use · Adobe...
Read more >94583 - Textarea resize-able only to larger; min-height and ...
Chrome Version : 13.0.782.107. OS Version: Ubuntu 11.04 URLs (if applicable) : <html> <body onload="checkCookie();"> <textarea style="width:100px; ...
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
as a workaround;
textarea{ min-height: 0!important; }
Instead of
initialHeight
I think you can remove theheight
fromelement.style
, ifminRows
is not set, the component will takeheight
from the css before the first resize.