Opera box-sizing对于带有flex的textarea不起作用

时间:2013-04-28 09:12:11

标签: css opera flexbox

我在Opera中发现了一个错误:在弹性显示模式下,box-sizing对textarea不起作用。

b {
    display: flex;
    flex-direction: row;
}

textarea {
    float: right;
    width: 50%;
    height: 50px;
    padding: 15px;
    box-sizing: border-box;
}

div {
    width: 50%;
    height: 50px;
    padding: 15px;
    box-sizing: border-box;
    background: red;
}

此处示例:http://jsfiddle.net/pJc5v/3/

怎么办?

1 个答案:

答案 0 :(得分:0)

您可以使用max-height解决此问题。

http://tinker.io/691f3/2

textarea {
    width: 50%;
    max-height: 50px;
    padding: 15px;
    box-sizing: border-box;
}