JSFiddle - React, Tailwind, and code Playground

by swfour

HTML

<a href='#' data-englishLabel='School' data-chineseLabel='學校'></a>

CSS

a:before {
    display:relative;
    content:attr(data-chineseLabel);
}
a:hover:before {
    display:relative;
    content:attr(data-englishLabel);
}