Normal
Dafür würde ich jQuery nutzen:[CODE]$('.ff-items > ol').each(function (index) { if ((index + 1) % 4 == 0) { $('<div />').css('clear', 'both').insertAfter ($(this)); }});[/CODE]
Dafür würde ich jQuery nutzen:
[CODE]$('.ff-items > ol').each(function (index) {
if ((index + 1) % 4 == 0) {
$('<div />').css('clear', 'both').insertAfter ($(this));
}
});[/CODE]