I'm attempting to create a fixed textarea that fills the entire width and height of the browser window using just CSS, and the following works perfectly in Chrome:
textarea {
border: 2px solid #3D6AA2;
padding: 5px;
position: fixed;
top:0;
left:0;
right:0;
bottom:0;
resize: none;
}
http://jsfiddle.net/BulletzBill/FZr9k/1/
However, if you view the fiddle in Firefox, it appears as though it does not take the bottom
or right
rules into account at all. Is this a known bug in firefox, or is there any workaround for it? I'd like to avoid using javascript/window resize listeners if possible.