I'm trying to set the font size of a table cell, but its not working. I've tried to set size in the css:
.myclass {
font-size: 10px;
}
It didn't work. I tried to change it to a relative size:
.myclass {
font-size: 0.8em;
}
But it didn't worked either. When i looked at the element using google chrome Developer tools, the font-size tag was there, but was striked out and has a yellow exclamation mark next to it. Does anybody know what it means and how can i set the font size ?