I have a table with data populated with an API Fetch. Some of the cells would have an attribute of "title", in my JSFiddle I have it on the second column. I would like to add an indicator for such cells where there is a tooltip and I have tried with the below css, without success:
td[title]:after {
position: absolute;
width: 0;
height: 0;
top: 0;
right: 0;
border-top: 10px solid red;
border-left: 10px solid transparent;
}