Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version

To modify the font size in an input text-area within Ionic, you can add the following CSS code to your .scss file:

ion-textarea { font-size: 16px; /* Adjust the font size as needed */ }

You can also target a specific input text-area by adding an ID or class to the element and using that in your CSS selector. For example:

myTextArea {

font-size: 16px; /* Adjust the font size as needed */ }

Then in your HTML file:

<ion-textarea id="myTextArea"></ion-textarea>