i want to position multiple span in 1 div all absolutely -- but in the next div again do the same thing but to that div and not to the whole page.
so i do position:relative for the div - but what about the span? (of do I just set the pixel amount in the span?) Is there anyway to easiily measure where something would go if I have a backround image and want to fill in set places?
Yeah of course it stayed there because that only works in conjunction with positon: absolute/relative;. You almost got ist. Just apply position: absolute; to your spans and it should work.
In a nutshell:
div needs position: relative;
span needs position: absolute; and a specific position (top, left, right, bottom)
but when i add text or another span to the same div. the span moves over a bit - I want it to be always positioned in the same place in the div - no matter if things are added or not? how do i do this?