It is kind of wierd but in my table cell I have a bullet point which for some strange reason it causes the text to align in the center of the cell even though I have no include text-align center or anything of the sort. To be honest all of the other table columns which by the way do not include bullet points align to the left as normal but for the column which contains a bullet points, its causes the text to the align center and I do not know why this is.My question is does the \[code\]<ul>\[/code\] tag cause the text to align center by default within a table cell or is there something which is somehow contradicting with the \[code\]<ul>\[/code\] tag and hence it is aligning the text to the center?Below is the table (cut down code):\[code\] <table id="tableqanda" cellpadding="0" cellspacing="0"> <thead> <tr> <th width="11%" class="image">Image</th> </tr> </thead> </table> <div id="tableqanda_onthefly_container"> <table id="tableqanda_onthefly" cellpadding="0" cellspacing="0"> <tbody> <?php foreach ($arrQuestionId as $key=>$question) { echo '<tr class="tableqandarow">'.PHP_EOL; echo '<td width="11%" class="imagetd">'. ( ( empty ($arrImageFile[$key]) ) ? " " : '<ul class="qandaul"><li>'.htmlspecialchars( is_array( $arrImageFile[$key] ) ? implode(",", $arrImageFile[$key]) : $arrImageFile[$key] ) ). '</li></ul></td>' . PHP_EOL; echo '</tr>'.PHP_EOL; }?> </tbody> </table>\[/code\]Below is the css which includes css for table:\[code\].imagetd{ font-size:75%; }.qandaul{ list-style-type:square;}#tableqanda_onthefly_container{ width:100%; overflow-y: auto; overflow-x: hidden; max-height:500px;}#tableqanda_onthefly{ width:100%; overflow:auto; clear:both;}#tableqanda_onthefly td{ border:1px black solid; border-collapse:collapse;}#tableqanda, #tableqanda_onthefly{ border:1px black solid; border-collapse:collapse; table-layout:fixed; word-wrap:break-word;} #tableqanda{ width:100%; margin-left:0; float:left;}#tableqanda td { vertical-align: middle; border:1px black solid; border-collapse:collapse;}#tableqanda th{ border:1px black solid; border-collapse:collapse; text-align:center;}.tableqandarow{ border:1px black solid; border-collapse:collapse;}\[/code\]