Resource website for Graphic & web designers and Developers with huge collection of design tips, tutorials, downloads and tricks
CSS LAYER-BACKGROUND-COLOR
Dec 28th
This value sets the background-color for the entire region of the current element. This proprietary property behaves in Netscape the way the ‘background-color’ property SHOULD behave, while the actual ‘background-color’ behavior is buggy in this regard. This property was invented to create the correct behavior.The ‘background-color’ property only covers the content area of an element’s [...]
CSS WORD-SPACING
Dec 28th
Specify the exact value of the spacing between your words. Word-spacing works best when pixels are used as the spacing value. Examples p {word-spacing: 30px} p {word-spacing: -0.5px} Possible Values Value Description normal Defines normal space between words length Defines a fixed space between words
CSS FONT-SIZE-ADJUST
Dec 28th
Specifies an aspect value for an element that will preserve the x-height of the first-choice font. If the aspect value is high, the font will be legible when it is set to a smaller size. Example h2 {font-size-adjust: 0.58} Possible Values Value Description none Do not preserve the font’s x-height if the font is unavailable [...]
Benefits of CSS
Dec 28th
Much more flexibleStyles can be written in one place (separate style sheets) and assigned to HTML elements through class or ID properties. It’s way easier and quicker to change styles across a whole site when they’re defined in one place.Lighter weightUsing CSS (like class=”main-nav”) creates far smaller HTML files than writing style into every HTML [...]
How CSS styles apply to HTML elements
Dec 28th
There are a few basic rules that govern which (separately-defined) styles apply to what elements. Fortunately, these are relatively simple and logical, once explained. I’ll go through them one at a time. 1. Applying to HTML elements themselves In CSS, if you want some styles to apply to HTML elements of a certain type, you [...]
Advantages of separate stylesheets
Dec 28th
There are lots of advantages of working this way, including: Reduced filesize – each CSS definition is written only once Reduced bandwidth – web browsers will remember (cache) the contents of CSS file, so don’t need to download the file again with each new page that uses it Easier updating – you only have to [...]
How CSS3 works
Dec 28th
CSS is a new smarter way to apply style properties to HTML elements.You can set all kinds of style properties, like border, font, background, spacing etc. (We’ll go into these in detail later.) There are 3 main ways CSS styles can be applied: Inline with HTML On-page style definitions Separate style sheets 1) CSS Inline [...]
WHAT IS CSS3
Dec 28th
Cascading Style Sheets (CSS) are the modern standard for website presentation. When combined with structural markup language like HTML, XHTML, or XML (though not limited to these), CSS provide Internet browsers with the information that enables them to present all the visual aspects and elements of a web document. CSS apply things like borders, spacing [...]
Cascading Style Sheets
Dec 27th
Generated content via the content property has been available since CSS2. However this was only available using the :before or :after pseudo-classes. In CSS3 this support has been expanded to be useable on any element, without needing to use these pseudo-classes. Unfortunately this only works in Opera 9 (and above) at the time of writing.I [...]




