How to resize text inside a div
by the user in front end .
for div resizing in the front by the user we can use css like
div {
resize: both;
overflow: auto;
}
or using jquery
$( "#div-id" ).resizable();
To edit text in a div in the front we can use
<div id="div-id" contenteditable="true"> Type text</div>
But how to make the resizable text inside a div .
EXAMPLE:
User can change the text inside this div <div id="div-id" contenteditable="true"> Type text</div>
, but how user can increase the text size in that div ?.
Note : actually this font size able to change by user . Currently the user can edit the text . In the same way user able to do increase the font size
Thank you