Wordpress

时间:2015-07-22 14:36:24

标签: html css wordpress

在Wordpress的download manager插件的下载概述页面上,有多列,短代码列与作者列重叠。我已将该列的最小宽度设置为175px,但是当调整窗口大小时,仍会缩小到其最小宽度以下。

.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;
}

所有继承的css属性:
http://spencerlarry.com/docs/all-inherited-styles.txt

enter image description here

我想知道如何让像这样的元素低于min-width
我有什么想法可以解决这个问题吗?

1 个答案:

答案 0 :(得分:3)

表格单元格不支持

min-widthmax-width

来自CSS2.1 specification

  

在CSS 2.1中,'min-width'和'max-width'对表的影响,   内联表,表格单元格,表格列和列组   未定义。

所以你应该做的一件事是设置单元格的width(而不是min-width),并使用table-layout属性fixed来设置单元格宽度不会再自动计算。