- Messages
- 1,682
- Reaction score
- 32
- Points
- 48
lol, tsa=Technical Student Association? i used to be in that in 8th grade
yeah, i kno i'm a nerd
lol, tsa=Technical Student Association? i used to be in that in 8th grade
CSS:so let's say i need to repeat the section 15x:
<span class="classname">Link</span> [~400bytes]
instead of just tiling a (15x1) [~100bytes] with CSS [~200bytes]
about 600bytes
but in your case:
<span class="classname">Link<div class="div_classname"></div></span> [~1200bytes]
and the css would be: [~250bytes]
about 1450bytes
div.block{
height:15px}
<div class='block'><a href='http://www.website/thepage.php'>link</a></div>