Du kannst nicht mehr als 25 Themen auswählen
Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.
1 |
- <style scoped>
#custom {
position: relative;
top: 100px;
}
#custom > div {
height: 200px;
}
</style>
<div id="custom">
<div id="custom-1" class="wow">Test 1</div>
<div id="custom-2" class="block">Test 2</div>
<div id="custom-3" class="block" data-wow-iteration="2">Test 3</div>
<div id="custom-4" class="block" data-wow-iteration="infinite" data-wow-duration="2s" data-wow-delay="1s">Test 4</div>
</div>
|