我的响应式文本区域有问题。在用户尝试扩展表单之前,它可以正常工作(跨不同的尺寸)(我目前已将其尺寸锁定为高度/最大高度/宽度/最大宽度组合)。有针对这个的解决方法吗?我做错了什么 - 以前没有见过这个问题。
专辑 -
http://imgur.com/a/9ICnF#0
html
<textarea name="message" id="message" placeholder="Message"></textarea>
CSS
form{
border: none;
outline: none;
text-align: center;
text-decoration: none;
font-family: 'Open Sans', sans-serif;
font-weight: 700;
color: white;
text-transform: uppercase;
background: black;
/*Android Hack*/
margin-top: -1px;
padding-bottom: 2em;
}
#message
{
border: none;
outline: none;
color: black;
display: block;
background: white;
padding: 1em;
margin: auto;
font-size: 1em;
margin-bottom: 1em;
font-family: 'Open Sans', sans-serif;
height: 12em;
max-height: 12em;
width: 70%;
max-width: 70%;
}
很抱歉代码乱七八糟-它们很快就被破解了!:)
提前谢谢!
http://jsfiddle.net/qfYQN/1/