html set width by class code example
Example 1: how to make div width auto adjust
.center {
display: inline-block;
position: relative;
left: 50%;
transform: translateX(-50%);
}
Example 2: default value width
width: auto;
.center {
display: inline-block;
position: relative;
left: 50%;
transform: translateX(-50%);
}
width: auto;