change height size.
See original GitHub issuethere are some options handle height.
height: 400,
minHeight: 100,
maxHeight: 400
that value is pixel unit.
is it possible to percent related with parent?
for example 100% height.
Issue Analytics
- State:
- Created 8 years ago
- Reactions:9
- Comments:26 (3 by maintainers)
Top Results From Across the Web
CSS Height, Width and Max-width - W3Schools
The height and width properties are used to set the height and width of an element. The height and width properties do not...
Read more >Setting Height And Width On Images Is Important Again
Yes, when an image is being shown at full size, without any CSS changing any dimensions, it is useful to resolve the layout...
Read more >Change the column width and row height - Microsoft Support
Select the row or rows that you want to change. On the Home tab, in the Cells group, click Format. ... Under Cell...
Read more >height - CSS: Cascading Style Sheets - MDN Web Docs
The height CSS property specifies the height of an element. By default, the property defines the height of the content area. If box-sizing...
Read more >How to make a div 100% height of the browser window?
The viewport-percentage lengths are relative to the size of the initial containing block. When the height or width of the initial containing ...
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 Free
Top 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
If you don’t set the height, editable area’s height will change according to contents.
I use css to dynamically set the height, here’s my code:
.note-editable { height: 50vh; width: 90vw; }
The div that holds your content has a class named
This works for me on summernote 0.8.8