[Solved] Why I can not at font into my table? [closed]


You have to use commas between the css selectors. And as the other people say, important was spelled wrongly. Furthermore, as radiation said, no <tbody> tag is present in your page or table, therefore nothing is selected by the css. Additionally remove the Khmer part from the font-family, as it might not be recognized.

#content-area-job-details, #site-content-job-details, .entry-content, table.job-table tbody{
     font-family: Arial,Khmer !important;
}

If Khmer is a custom font, have you included it in your website? As a font installed on your local PC will not automatic work on the internet.

Here is an example:
https://jsfiddle.net/q6z5wmp8/

3

solved Why I can not at font into my table? [closed]