修复表td中值的格式

时间:2016-05-20 14:45:47

标签: html css

我有这段代码:

   <table width="105%" style="left: -13px;position: relative;"> 
               <tr style="line-height: 35px; " class='0'>
                 <td style="left: -15px;position: relative;">Nom et Prénom</td>
                 <td style="color: #90949c;"><input type="text" class="textedit" value="vbnvbn ">  </input> </td>
                 <td class="tdm" ><i class="fa fa-pencil-square-o" aria-hidden="true"></i> <a class="tdmod">Modifier</a> </td>
               </tr>
         </table>  

每个tr的第一个td没有像其他人那样组织。那么如何在不使用float:left的情况下修复它?谢谢

1 个答案:

答案 0 :(得分:1)

这是你要找的吗?

<td style="left: -15px;position: relative; text-align: left;">Nom et Prénom</td>