开发者

Adjust table column width to content size

开发者 https://www.devze.com 2022-12-24 06:20 出处:网络
Form (with firebug highlight hover the td): Label column CSS: width: auto; padding: 0; margin: 0; The problem:

Form (with firebug highlight hover the td):

Adjust table column width to content size

Label column CSS:

width: auto;
padding: 0;
margin: 0;

The problem:

Why my left columns have th开发者_JAVA百科at invisible "padding-right"? It's not possible to shrink columns to fit their content?

--EDIT--

The problem was the table itself. I defined table with "width: 100%". Removed that and the problem is gone.


The problem was the table width. I had used width: 100% for the table. The table columns are adjusted automatically after removing the width tag.


If you want the table to still be 100% then set one of the columns to have a width:100%; That will extend that column to fill the extra space and allow the other columns to keep their auto width :)


maybe problem with margin?

width:auto;
padding: 0px;
margin: 0px
0

精彩评论

暂无评论...
验证码 换一张
取 消