I want the children of the div fill its width.
div
now am using a code like this:
Use flexbox:
.parent { width: 100%; display: flex; background: #000; padding: 10px; box-sizing: border-box; margin-bottom: 15px; } .child { flex: 1; margin: 0 10px; height: 100px; background: #ffffd; }