• Shenton Makayla
  • NEWBIE
  • 0 Points
  • Member since 2020

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 0
    Questions
  • 1
    Replies
I've got a simple LWC for a rich text box. The default size is only a few lines and I'd like to make it bigger.
Here is the HTML for lwc:
<template>
<lightning-input-rich-text value={rtval} onchange={handleChange}>
</lightning-input-rich-text>
</template>
How do I make the text box have height:14em?