I am sure this problem has been asked before but I cannot seem to find the answer.
I have the following markup:
<div id="foo">
<div id="bar">
here be dragons
</div>
</div>
My desire is to make foo to have width of 600px (width: 600px;) and to make bar have the following behaviors:
padding-left: 2px;
padding-right: 2px;
margin-left: 2px;
margin-right: 2px;
outerWidth: 100%;
In other words instead of setting width of bar to 592px I would like to set the outer width of bar to 100% so that it is computed to 592px. The importance here is that I can change foo’s width to 800px and bar will calculate when rendered instead of me having to do the math for all these instances manually.
Is this possible in pure CSS?
Some more fun with it:
- What if
#baris a table? - What if
#baris a textarea? -
What if
#baris an input? -
What if
#foois a table cell (td)? (Does this change the problem or is the problem identical?)
So far the table#bar, input#bar has been discussed. I have not seen a good solution for textarea#bar. I Think a textarea with no border/margin/padding with a div wrap might work with the div styled to work as borders for the textarea.
EDIT:
Those three different elements all have different rendering rules.
So for:
table#baryou need to set the width to 100% otherwise it will be only be as wide as it determines it needs to be. However, if the table rows total width is greater than the width ofbarit will expand to its needed width. IF i recall you can counteract this by settingdisplay: block !important;though its been awhile since ive had to fix that. (im sure someone will correct me if im wrong).textarea#bari beleive is a block level element so it will follow the rules the same as the div. The only caveat here is thattextareatake an attributes ofcolsandrowswhich are measured in character columns. If this is specified on the element it will override the width specified by the css.input#baris an inline element, so by default you cant assign it width. However the similar totextarea‘scolsattribute, it has asizeattribute on the element that can determine width. That said, you can always specifiy a width by usingdisplay: block;in your css for it. Then it will follow the same rendering rules as the div.td#foowill be rendered as atable-cellwhich has some craziness to it. Bottom line here is that for your purposes its going to act just likediv#fooas far as restricting the width of its contents. The only issue here is going to be potential unwrappable text in the column somewhere which would make it ignore your width setting. Also all cells in the column are going to get the width of the widest cell.Thats the default behavior of block level element – ie. if width is
auto(the default) then it will be 100% of the inner width of the containing element. so in essence:will give you exactly what you want.