How to override the inline css having !important property. I have tried the following link also How to override !important? but this is not helping.
<head>
ul{
color:yellow !important;//from here i want to overrride the inline css**
}
</head>
<body>
<div id="something">
<table>
<tr>
<td>
<ul>
<li style="color:#fff !important"></li> // i want to oveeride this inline css
</ul>
</td>
</tr>
</table>
</div>
</body>