auto adjust div width based on content code example
Example 1: make div the size of the text inside
div {
display: inline-block;
}
Example 2: how to make div width auto adjust
.center {
display: inline-block;
position: relative;
left: 50%;
transform: translateX(-50%);
}