Comment #4 on issue 20865 by dichlofos.mv: Not able to set width using  
ColGroup when table-layout is fixed
http://code.google.com/p/chromium/issues/detail?id=20865

Moreover, the following code will *also* not work in latest 4.0.266 Chrome  
as
expected. The <colgroup/> section is moved after <tbody/> block. However,  
this works
perfectly at least in Fx >= 3 and IE7-8 (I'm not tested others)

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
     <head>
         <meta http-equiv="content-type" content="text/html; charset=UTF-8">
     </head>

     <body>
         <table style="table-layout: fixed; width: 100%;" border=1px>
             <tbody>
                 <tr>
                     <td colspan="4">First</td>
                 </tr>
                 <tr>
                     <td>Col-1</td>
                     <td>Col-2</td>
                     <td>Col-3</td>
                     <td>Col-4</td>
                 </tr>
             </tbody>
             <colgroup>
                 <col width="35px">
                 <col width="65px">
                 <col width="100px">
             </colgroup>
         </table>
     </body>
</html>

I'm not sure it's worth fixing, but it definitely worth to post here. On  
the other
hand, billion of lemmings (oh, sorry, browsers) cannot mistake!

--
You received this message because you are listed in the owner
or CC fields of this issue, or because you starred this issue.
You may adjust your issue notification preferences at:
http://code.google.com/hosting/settings

-- 
Automated mail from issue updates at http://crbug.com/
Subscription options: http://groups.google.com/group/chromium-bugs

Reply via email to