div inside table not affected
css
.table-striped > tbody > tr > td .title-intbl ul{ list-style: outside none none !important; margin:0; }
table code
<table class="table table-striped"> <td><div class="title-intbl"><ul><li>title</li> <li> <a href="#" class="btn btn-default btn-xs">edit</a></li> </ul></div> </td></table>
image:
you not have <tbody>
in html, css selector finds no elements.
Comments
Post a Comment