CSS: Shrink Wrap

By Xah Lee. Date: . Last updated: .

Use 「width: fit-content」

.gZYqc {
 width: fit-content;
}
Example. To shrink wrap, you can use this.

Use 「Display: inline-block」

.N9gW7 {
 display: inline-block;
}
Example. To shrink wrap, you can use this.

Use 「display: table」

.SV3xR {
 display: table;
}
Example. To shrink wrap, you can use this.

CSS, misc, advanced