CSS Width / Max-Width on Line Wrap?

后端 未结 2 1480
猫巷女王i
猫巷女王i 2020-11-28 13:39
#tooltip
{ 
    position: absolute;
    width:auto;
    min-width:50px;
    max-width:250px;
    padding:10px;
    background-color:#eee;
    border:1px solid #aaa;
         


        
2条回答
  •  自闭症患者
    2020-11-28 14:05

    Try using one of this:

    width: max-content;
    width: min-content;
    width: available;
    width: fit-content;
    

    They are not 100% compatible, but prefixes fix that problem more or less.

    Source: https://developer.mozilla.org/docs/Web/CSS/width

提交回复
热议问题