css - HTML column below minimum width in Wordpress -


on downloads overview page download manager plugin wordpress there multiple columns , shortcode column overlaps author column. i've set column's minimum width 175px when window resized still shrinks below it's minimum width.

.column-wpdmshortcode{     -webkit-font-smoothing: subpixel-antialiased;     border-bottom-color: rgb(225, 225, 225);     border-bottom-style: solid;     border-bottom-width: 1px;     border-collapse: separate;     color: rgb(50, 55, 60);     display: table-cell;     font-family: 'open sans', sans-serif;     font-size: 14px;     font-weight: normal;     height: 22px;     line-height: 19.6000003814697px;     padding-bottom: 8px;     padding-left: 10px;     padding-right: 10px;     padding-top: 8px;     text-align: left;     vertical-align: middle;     width: 77px;     word-wrap: break-word;      min-width: 175px; } 

all inherited css properties:
http://spencerlarry.com/docs/all-inherited-styles.txt

enter image description here

i'm wondering how it's possible have element below it's min-width.
ideas how fix problem?

min-width , max-width not supported on table cells.

from css2.1 specification:

in css 2.1, effect of 'min-width' , 'max-width' on tables, inline tables, table cells, table columns, , column groups undefined.

so 1 thing should set width of cell (and not min-width), , use table-layout property fixed cells widths no longer auto calculated.


Comments

Popular posts from this blog

Fail to load namespace Spring Security http://www.springframework.org/security/tags -

sql - MySQL query optimization using coalesce -

unity3d - Unity local avoidance in user created world -