我正在处理地图项目,出于某种原因,我的工具提示的文字宽度将继续扩展到我想要的宽度,直到我为文本添加空格。如果我添加一个空格,它会突破到下一行;发生了什么,我该如何解决这个问题?我想在一行上的文字没有指定宽度,所以它可以自动设置宽度,我该如何解决这个问题?
在下面的示例中,查看段落标记中的文本“棒球字段”。如果它显示为“BaseballFields”,它将保持在一行。但是只要我添加空格,它就会换行。
<div style="width: 750px; height: 1221px; border: 0; padding: 0; margin-top: 10px; display: block; position:relative; background: url('http://www.thefirstacademy.org/filerequest/9701.jpg') no-repeat left top;">
<style type="text/css">
.triangle {
position:absolute;
bottom:-5px;
left:40%;
height:0;
width:0;
border-left:5px solid transparent;
border-right:5px solid transparent;
border-top:5px solid white;
}
.tooltip {
color:#ef4c4c;
background:#ffffff;
padding:17 10;
display:block;
position:absolute;
border-radius:5px;
font:.8em 'MuseoSans-500','Museo Sans';
top:-40px;
box-shadow:0px 3px 3px #000;
border:1px solid #000;
}
</style>
<div class="marker" style="position:absolute;cursor:pointer;left:450px;top:75px;" id="baseball">
<img src="http://www.thefirstacademy.org/filerequest/9702.png" alt="Location Marker" />
<div class="tooltip" >
<div class="triangle"></div>
<p style="padding:0;margin:0;line-height:0;display:block;">Baseball Fields</p>
</div>
</div>
</div>
答案 0 :(得分:1)
只是抬头:除white-space: nowrap;
之外,为了浏览器兼容性而包含display: inline-block;
会很有帮助