我有一个静态
PHP站点我正在使用Bootstrap.这些表由Bootstrap控制.
我注意到,我似乎无法控制TD部分的长度,以防止电话号码等包装.正如你所看到的,结尾有很多空间,只是不知道如何传播这个空间.
我尝试了< th>上的内联宽度但没有发生什么:
<table class="table table-condensed table-striped table-hover"> <thead> <tr> <th>#</th> <th width="12%">Last Name</th> <th width="12%">First Name</th> <th width="12%">Spouse's Name</th> <th width="20%">Address</th> <th width="5%">City</th> <th width="12%"class="did_phone">Phone</th> <th width="15%">E-Mail</th> <th width="15%"></th> </tr> </thead> <tbody>
屏幕如下所示,您可以看到:
https://docs.google.com/file/d/0B9AH3_9hXYkhQzJBclp3bU9iUU0/edit?usp=drivesdk
所以…如何更改< td>宽度,进行调整,所以没有包装,在Bootstrap?