将日期选择器拉伸到全宽

时间:2017-08-28 07:20:18

标签: css reactjs react-datepicker

我正在使用react-datepicker。

<div className="context-param context-param-line">
    <div className="context-param-name">Check In </div>
    <div className="context-param-value">
        <DatePicker
            selected={hotel.checkInDate}
            onChange={this.checkInDateChanged.bind(this)}
            isClearable={true}
        />
    </div>
</div>

enter image description here

现有的风格是:

.context-param-line {
    flex: 1;
    margin: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.context-param-name {
    font-weight: 200;
    text-align: center;
    margin-bottom: 5px;
    font-size: 16px;
}

.context-param-value {
    color: #888;
    font-size: 16px;
}

我想将datepicker拉伸到容器的整个宽度。现在,宽度硬编码为147px。另外,我想调整日期选择器的z-index。我尝试了各种CSS选项但无法使其工作。有没有人知道确切的CSS来修复父容器的宽度?感谢。

0 个答案:

没有答案