Yes, using floating elements. By floating elements to the left they will break to the next line when they reach the right edge. Use a div element as container, as it by default has the width auto, which uses all the available width. Example:
HTML:
<div class="Container">
<div class="item">X</div>
<div class="item">X</div>
<div class="item">X</div>
<div class="item">X</div>
<div class="item">X</div>
</div>
CSS:
.Container { overflow: hidden; }
.Container .item { float: left; width: 100px; height: 100px; }
Setting the overflow style on the container without specifying any width or height, will make the child elements stay inside the container. Without it, the child element would not affect the height of the container, so it would get the height zero.