0

有没有人可以帮助我了解这篇文章:首先我想知道为什么 max-width 在下面的代码中不起作用,其次我需要工具提示中的内容一直持续到 max-width 然后转到下一行多谢

.tooltip {
    position: relative;
    display: inline-block;
    border-bottom: 1px dotted black;
}

.tooltip .tooltiptext {
    visibility: hidden;
    width: 120px;
    max-width:500px;
    background-color: #555;
    color: red;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    margin-left: -60px;
    opacity: 0;
    transition: opacity 0.3s;
}

.tooltip .tooltiptext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #555 transparent transparent transparent;
}

.tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}
<body style="text-align:center;">

<h2>Tooltip</h2>
<p>Move the mouse over the text below:</p>

<div class="tooltip">Hover over me
  <span class="tooltiptext">TooltiptextTooltiptextTooltiptextTooltiptextTooltiptext</span>
</div>

</body>

4

1 回答 1

0

在工具提示 div 上添加以下 2 种样式

word-break: break-all;
word-wrap: break-word;
于 2018-05-12T15:47:27.433 回答