Resizeable CodePen Embeds

Direct Link

If you put an Embedded Pen into a resizeable container, it will fluidly resize to fill both the vertical and horizontal space. Nothing overly incredible, but I link it up here because I think the whole idea of offering user-resizeable …

Avatar of Chris Coyier
Shared by Chris Coyier on

resize

The resize property controls if and how an element can be resized by the user by clicking and dragging the bottom right corner of the element.

.module {
  resize: both;
}

Super important to know: resize does nothing unless the …

Avatar of Sara Cope
Sara Cope on (Updated on )

Textarea Tricks

Oh, <textarea></textarea>‘s. How many quirks you posses. Here is a collection of nine things you might want to do related to textareas. Enjoy.…

Avatar of Chris Coyier
Chris Coyier on (Updated on )