I was trying to add a little bit of help text to a TextArea in Posting, as it's prime real estate for it :) ### Example ```python from textual.app import App, ComposeResult from textual.widgets import TextArea class TextAreaPlaceholderMultipleLines(App[None]): def compose(self) -> ComposeResult: yield TextArea(placeholder="Line 1\nLine 2\nLine 3") if __name__ == "__main__": app = TextAreaPlaceholderMultipleLines() app.run() ``` ### Result <img width="276" height="217" alt="Image" src="https://github.com/user-attachments/assets/4adf89d1-dcb2-4042-a044-db261232cef4" />