【发布时间】:2014-09-08 15:17:40
【问题描述】:
我将<P> 标签设置为固定高度和overflow:hidden。在它的悬停效果上,我设置了overflow:visible;
我的问题是显示文本,但我想设置z-index 和<p> 的背景颜色,背景显示仅适用于max-width 的<P>。我想在它覆盖的文本高度更改背景颜色。
CSS:
.oe_description {
overflow:hidden;
max-height:4.2em;
text-overflow: ellipsis;
}
.oe_description:hover {
overflow:visible;
position:relative;
z-index:100;
background: #e5f2f7;
font-weight:bold;
}
见:FIDDLE
【问题讨论】: