asp:TextBox with TextMode="MultiLine" Wrap="True" will not wrap

Here is the article where I found the solution, it basically says the newest IE browsers handle textbox wrapping just a little different than they used to. The solution was to add white-space: pre-wrap; my CSS. Here's what new block looked like:

.auto-style130 {
    /*drug section of script*/
    border: .1px solid #808080;
    white-space: pre-wrap;
    height: 35px;
    width: 402px;
    vertical-align: middle;
}

This made everything wrap!