Reputation:
How to make the div to only take the content's width?
.modal {
position: fixed;
top: 63px;
z-index: 20;
left: 0;
right: 0;
margin: auto;
background: gold;
text-align: center;
}
<div class='modal'>
lorem ipsum<br>and<br>lorem ipsum
</div>
Upvotes: 3
Views: 60
Reputation: 13407
.modal {
position: fixed;
top: 63px;
z-index: 20;
left: 50%;
transform: translateX(-50%);
background: gold;
}
<div class='modal'>
lorem ipsum<br>and<br>lorem ipsum
</div>
Upvotes: 4