我試圖找出這一段時間,但沒有成功。我有一個嵌套跨度的錨標籤來生成tool_tip。這個tool_tip被放置在th標籤中。問題是白色空間屬性在跨度中被繼承。所以文本超出了跨度。該white-space:normal !important
不覆蓋white-space:nowrap
css空白不繼承
table.fieldList th
{
color: #000;
height: 15px;
padding-left: 5px;
vertical-align: bottom;
border-bottom: 1px solid #1133AA;
text-align: left;
font-weight: bold;
white-space:nowrap;
}
a.tool_tip
{
text-decoration:none;
cursor:pointer;
}
a.tool_tip span
{
display: none;
}
a.tool_tip :hover span
{
position: absolute;
height: 30px;
text-align:left;
width: 200px;
font-style: normal;
margin-left: 0px;
padding: 0px;
padding-left: 3px;
display: inline;
white-space: normal!important;
z-index: 12;
margin-top:20px;
}
a.tool_tip :hover span span
{
background: white;
border: solid 1px #004b8d;
border-right-width: 3px;
width: 200px;
margin: 0px;
padding: 2px;
height: auto;
display: block;
white-space: normal!important;
z-index: 13;
font-weight: normal!important;
text-decoration:none;
}
請發表您的標記代碼,如果可以的話,請提供一個jsfiddle – Curt