CSS
Z-index
by David on Oct.09, 2011, under CSS
Z-index Information
Have found this useful to know as when testing things, occasionally I run into issues where items appear on top of others when they shouldn't. Easy to fix though - I've grabbed this straight from the W3Schools page here:
Definition and Usage
The z-index property specifies the stack order of an element.
An element with greater stack order is always in front of an element with a lower stack order.
Note: z-index only works on positioned elements (position:absolute, position:relative, Read more [...]
Leave a Comment
more...
Assorted CSS fundamentals related to ID’s and Classes.
by David on Aug.01, 2011, under CSS
Style sheets will influence the printed copy of your pages unless specified otherwise. Use the media="screen" and media="print" calls to differentiate them. EG.
css" href="screen.css" />
<link rel="stylesheet" media="print" type="text/css" href="screen.css" />
The other more recent media type is media="handheld" (not supported by all browsers) - used for handheld devices.
CSS syntax is made up of a 'Selector' (the element or tag you wish to control), followed by at least one Read more [...]
Leave a Comment
:CSS
more...

