我正在使用反应日期选择器。
<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>
现有样式有:
.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;
}
我想将日期选择器拉伸到容器的整个宽度。现在,宽度被硬编码为 147px。另外,我想调整日期选择器的 z-index。我尝试了各种 CSS 选项,但无法正常工作。有谁知道确切的 CSS 来固定父容器的宽度?谢谢。