问题
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.
回答1:
Here is an update to your jsfiddle
You need to make the width:100%
, height:100%
and box-sizing: border-box;
You only need 2 position points top
and left
来源:https://stackoverflow.com/questions/16084191/firefox-textarea-sizing-bug