# trix

Published articles for trix.

This is one page of public article previews, not the complete archive. Follow Next page to continue. Summaries are not the original full articles.

## Lexxy: A new rich text editor for Rails

DevFeed: [Lexxy: A new rich text editor for Rails](<https://devfeed.tech/articles/lexxy-a-new-rich-text-editor-for-rails-33500.md>)

Original publisher: [Read original article](<https://dev.37signals.com/announcing-lexxy-a-new-rich-text-editor-for-rails/>)

Author: Jorge Manrubia

Published: 2025-09-04T17:00:00Z

Content type: release

Language: en

Sources: [37signals Dev](<https://devfeed.tech/sources/37signals-dev.md>)

Topics: [Rails](<https://devfeed.tech/topics/rails.md>), [Framework](<https://devfeed.tech/topics/framework.md>)

Tags: [editor](<https://devfeed.tech/tags/editor.md>), [rails](<https://devfeed.tech/tags/rails.md>), [rich](<https://devfeed.tech/tags/rich.md>), [trix](<https://devfeed.tech/tags/trix.md>)

### AI overview

37signals introduces Lexxy, a new rich text editor for Rails Action Text based on Meta's Lexical framework. The early beta adds Markdown support, semantic HTML, real-time code syntax highlighting, configurable prompts, attachment previews, and integration with Action Text and Active Storage.

### Source excerpt

A better Action Text.

## Making the Trix Editor Resizable

DevFeed: [Making the Trix Editor Resizable](<https://devfeed.tech/articles/making-the-trix-editor-resizable-28353.md>)

Original publisher: [Read original article](<http://fuzzyblog.io/blog/trix/2020/01/01/making-the-trix-editor-resizable.html>)

Author: Fuzzygroup

Published: 2020-01-01T00:00:00Z

Content type: tutorial

Language: en

Sources: [Scott Johnson](<https://devfeed.tech/sources/scott-johnson.md>)

Topics: [CSS](<https://devfeed.tech/topics/css.md>), [Web Development](<https://devfeed.tech/topics/web-development.md>), [Development](<https://devfeed.tech/topics/development.md>)

Tags: [css](<https://devfeed.tech/tags/css.md>), [development](<https://devfeed.tech/tags/development.md>), [trix](<https://devfeed.tech/tags/trix.md>), [web-development](<https://devfeed.tech/tags/web-development.md>)

### AI overview

A brief tutorial showing a CSS addition that limits the maximum height of a Trix editor window and makes it resizable using vertical overflow.

### Source excerpt

It is interesting that my first post of 2020 is actually a CSS trick. That's quite an evolution in my web development practices from 2019. Here is a CSS addition that limits the max height of your trix editor window and makes it resizable: .trix-content { max-height: 800px !important; #set whatever height you want overflow-y: auto; } Trix Editor Resources https://trix-editor.org/ Go Rails Headway on Trix Github