css max-width不工作,br max max width

时间:2018-05-12 15:41:57

标签: html css word-wrap word-break

请有人帮我解决这篇文章: 首先,我想知道为什么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>
&#13;
&#13;
&#13;

1 个答案:

答案 0 :(得分:0)

在工具提示div

上添加以下两种样式
word-break: break-all;
word-wrap: break-word;