I am using a datatable for my data population.I am using Title for the header tooltip.But can i use css along with it? Like i tried
#mainTable title {
font-weight: bold;
font-size : 30px;
color:red;
}
and i want to use css in table header inside th
var createTable = '<table id="mainTable" class="display"><thead><tr><th title="Starting date of the period in which the activity occurred.">Period Starting</th><th title=Intelligence(Milestone)>Intelligence</th><th title=Engaged(Milestone)>Engaged</th><th>Qualification</th><th>Internal Submission</th><th>Present</th><th>Interviewed</th><th>Support</th><th>Placement</th></tr></thead><tbody>';
Can i achieve anyhow?