Skip to main content

Posts

Showing posts from August, 2009

Layers in CSS

No posting for a while, wish I had, have learnt so much, will try to publish the other points A great feature that I found in style sheet is z-index. you add this into your normal def div.ItemOnTop {    z-index: 50; } then you can control how the page is rendered and what appear on to of another. the low the number the low the "layer" that the item appears. So with CSS you can make sure a pull down menu appears over the other items in the page, you can use the above, as long as there are no other items that are on the page with a higher Z-index