I am trying to create an absolute position for a text area that will stretch to cover its parent. Unfortunately, Chrome seems to ignore the right property , and Firefox ignores the right and bottom properties .
Here is the CSS that I use:
#container {
position: relative;
}
#my-text-area {
position: absolute;
top: 0px;
bottom: 0px;
left: 10px;
right: 10px;
}
Run codeHide resultHere is a JsFiddle example: enter link description here
textarea , ?
, , , 0.