The block is in a block, 100% wide. When the title block is filled with very long text, and the line wrapping is canceled, it expands to 100%, is transferred to a new line, and the blocks following it are also transferred.
.month-num, .title { float: left; } .persone, .start-date, .end-date { float: right; } .clear { clear:both; } <div class=month> <div class=month-num>2</div> <div class=title>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</div> <div class=persone>geqo</div> <div class=start-date>21.11.12</div> <div class=end-date>22.11.12</div> <div class=clear></div> </div> How to make it use only free space without specifying a fixed width for other blocks?
