Textarea max-width

Je vais avoir des problèmes avec textarea max-width, j'en ai besoin pour ne pas dépasser .table-cell.deux largeur de redimensionnée, sur cet exemple:

JSfiddle exemple

HTML:

<div class="wrapper">
<div class="table">
    <div class="table-cell one">
        <p>small cell</p>
    </div>
    <div class="table-cell two">
        <p>textarea cell</p>
        <textarea></textarea>
    </div>
</div>

CSS:

textarea {
  max-width: 100%;
}

.wrapper {
  width: 500px;
}

.table {
  display: block;
  width: 100%;
}

.table-cell {
  display: table-cell;
  background: #E2D8C1;
  vertical-align: top;
  padding: 10px;
}

.table-cell.two {
  width: 100%;
  background: #DAC082;
}

.table textarea {
  max-width: 100%;
  width: 100%;
  height: 100px
}

S'il vous plaît ne vous conseillons pas d'utiliser javascript, besoin d'un pur css solution.

L'air parfait pour moi. Décrivez votre problème correctement, comment voulez-vous?
Désolé, lors d'un redimensionnement de textarea, j'en ai besoin pour redimensionner la hauteur, la largeur doit rester 100%

OriginalL'auteur no1lov3sme | 2015-01-14