How can I adjust DIV width to contents

前端 未结 5 1589
一向
一向 2021-01-31 14:59

I have a div element with style attached:

.mypost {
    border: 1px solid Peru;
    font-family: arial;
    margin: auto;
    min-width: 700px;
    width: 700px;         


        
5条回答
  •  孤城傲影
    2021-01-31 15:05

    Try width: max-content to adjust the width of the div by it's content.

    
    
    
    
    
    
    
    
    This div element has width 500px;

    Width by content size

提交回复
热议问题