Answers for "reduce width of div to text in div"

CSS
5

make div the size of the text inside

div {
display: inline-block;
}
Posted by: Guest on April-27-2020
0

how to make text in div elements not crumple up when the div element gets smaller

display: inline-block; /*from stackoverflow*/
Posted by: Guest on March-25-2021

Browse Popular Code Answers by Language