<script src="https://unpkg.com/@popperjs/core@2"></script>
<script src="https://unpkg.com/tippy.js@6"></script>

Для отображения подсказки навести курсор на ячейку или кликнуть 
<br>
<br>


Вариант №1
<table border="1">
  <thead>
    <tr>
      <th class="firstClass" data-tippy-content="<ul><li>first marker</li><li>second marker</li><li>third marker</li></ul>">
        Содержимое ячейки №1
      </th>
      <th class="firstClass" data-tippy-content="<ul><li>first marker</li><li>second marker</li><li>third marker</li></ul>">
        Содержимое ячейки №2
      </th>
   </tr>
  </thead>
 </table>
<br>
<br>

Вариант №2
<table border="1">
  <thead>
    <tr>
      <th class="firstClass">
             <div class="hintTippy" data-tippy-content="<ul><li>first marker</li><li>second marker</li><li>third marker</li></ul>">
Содержимое ячейки №1
            </div>
      </th>
      <th class="firstClass">
             <div class="hintTippy" data-tippy-content="<ul><li>first marker</li><li>second marker</li><li>third marker</li></ul>">
Содержимое ячейки №2
            </div>
      </th>
   </tr>
  </thead>
</table>
table {
  width: 100%;
} 

th {
  padding: 10px;
} 
tippy(".firstClass, .hintTippy", {
  allowHTML: true,
});

External CSS

This Pen doesn't use any external CSS resources.

External JavaScript

This Pen doesn't use any external JavaScript resources.