В фиксированном заголовке таблицы мне нужен весь текст, чтобы перейти под фиксированный заголовок. Это работает для всего, кроме текста (Img) в первом столбце. Img проходит через фиксированный заголовок. Я полагаю, что это, вероятно, в CSS, где я должен сделать корректировку, но не могу понять, как настроить видимость ....
Текст Img создает всплывающую подсказку, когда вы наводите на нее курсор.
JSFIDDLE
https://jsfiddle.net/rbla/1Ljuycbe/27/
/* IMAGE TOOLTIP */
.up:hover {
cursor:pointer;
}
.tooltip2 {
position: relative;
display: inline-block;
border-bottom: 3px dotted black; /* If you want dots under the hoverable text */
text-decoration: none;
color: #00F;
}
img.cadre {
border: 3px solid #D2D1D1;
border-radius: 4px;
width: 125px;
height: 125px;
}
/* Tooltip text */
.tooltip2 .tooltiptext2 {
visibility: hidden;
width: 130px;
background-color: #fff;
color: #fff;
text-align: center;
padding: 5px 5px;
border-radius: 6px;
margin-left: 7px;
/* Position the tooltip text - see examples below! */
position: absolute;
z-index: 0;
}
/* Show the tooltip text when you mouse over the tooltip container */
.tooltip2:hover .tooltiptext2 {
visibility: visible;
cursor:pointer;
}
/* Positioning - Right Tooltip */
.tooltip2 .tooltiptext2 {
top: -5px;
left: 105%;
}
/* Left Arrow */
.tooltip2 .tooltiptext2::after {
content: " ";
position: absolute;
top: 15px;
right: 100%; /* To the left of the tooltip */
margin-top: -5px;
border-width: 5px;
border-style: solid;
border-color: transparent white transparent transparent;
}