CSS: Shrink Wrap

By Xah Lee. Date: .

Use width:fit-content

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

Display:inline-block

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

Use display:table

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