2010-12-02 83 views
0

alt text徘徊文本不显示正确

大家好,

在SharePoint我显示标题的列表和悬停它应该显示我的描述说明。但不知何故,我的CSS我无法正确看到描述。

请在下面的顶部和CSS找到图像。

CSS:

<style> 

span.summary { 
     position: relative; 
BACKGROUND: none transparent scroll repeat 0% 0%; 
} 

.ms-vb span.summary a { 
background-color: #DFDFDF; 
} 

span.summary a span { 
     display: none; 
} 

span.summary a:hover { 
     font-size: 100%; 
     font-color: #000000; 
} 

span.summary a:hover span { 
     display: block; 
     position: absolute; 
     margin-top: 10px; 
     margin-left: -10px; 
    width: 275px; padding: 5px; 
     z-index: 900; 
     color: #001A49; 
     background: #DFDFDF; 
     font: 12px "Helvetica"; 
     text-align: left; 
     text-decoration: none; 
} 

.ms-alternating .ms-vb { 
background-color: #DFDFDF; 
} 
</style> 
+0

工作,以及你指的是什么描述?如果它是放入A标签的title属性中的文本,请注意,在鼠标悬停的工具提示中显示此内容不是标准所要求的做法,您不应该依赖浏览器来显示工具提示。 title属性用于索引和可访问性目的。 – 2010-12-02 18:05:20

回答