I have parent div tag and him must be several children div tags, I want that children tags placing horizontal. count childrens div tags, is not known advanced, on this, I can't set width parent div tag with css, for this I use js
var cnt = $("#parent div").length; // obtain children tags total count
var parent_width = cnt * 102 ; // 100 is children tag width and 2 is left and right border sum : 100 + 1 + 1
$("#parent").css({
width: parent_width+"px"
});
<div id="parent" style="height: 100px; background-color: #090">
<div style="height: 100px; width: 100px; background-color: #009; border: 1px solid #ccc; float: left">
</div>
<div style="height: 100px; width: 100px; background-color: #009; border: 1px solid #ccc; float: left">
</div>
</div>
This works, but I think this must make without js, only with css, please tell how ?
<div>elements to fit the size of their parent automatically. You can do this by setting thefloatproperty on the parentdivelement. – Luka Sep 9 '12 at 12:36