CSS techniques I use all the time - 0 views
-
EM calculations Sizing text is always an important part of making a usable design. I start all my CSS files with the following rules: html { font-size:100.01%; } body { font-size:1em; } The explanation for this comes from "CSS: Getting Into Good Coding Habits:" This odd 100.01% value for the font size compensates for several browser bugs. First, setting a default body font size in percent (instead of em) eliminates an IE/Win problem with growing or shrinking fonts out of proportion if they are later set in ems in other elements. Additionally, some versions of Opera will draw a default font-size of 100% too small compared to other browsers. Safari, on the other hand, has a problem with a font-size of 101%. The current "best" suggestion is to use the 100.01% value for this property.
-
I used the following calculation: 14px/16px = .875, 18px/16px = 1.125. So my default text at 1 em would translate to 16px for most users, and my small text I sized at .875em which I can trust to result in 14px for most users, while my large text I sized at 1.125em which I can trust to result in 18px
-
Safe Fluid-width Columns I work with hybrid fluid layouts all the time, usually with max-width set at anywhere from 900 to 1000px. I usually have floated columns with percentage widths, and browsers will calculate these percentage widths to whole pixel values when rendering the columns.
- ...3 more annotations...
Building Large-Scale jQuery Applications - 5 views
Searched for - (PHP) - 0 views
HTML5 - Edition for Web Developers - 14 views
WebPutty: Simple, fast, and powerful CSS editing and hosting. - WebPutty - 0 views
-
Get professional, low priced & high quality website templates from Templaterange. http://www.templaterange.com
Swagger: A simple, open standard for describing REST APIs with JSON - 0 views
-
Get professional, low priced & high quality website templates from Templaterange. http://www.templaterange.com
Swagger API Explorer - 0 views
-
Get professional, low priced & high quality website templates from Templaterange. http://www.templaterange.com
How To Use CSS3 Pseudo-Classes - Smashing Magazine - 0 views
-
"CSS3 is a wonderful thing, but it's easy to be bamboozled by the transforms and animations (many of which are vendor-specific) and forget about the nuts-and-bolts selectors that have also been added to the specification. A number of powerful new pseudo-selectors (16 are listed in the latest W3C spec) enable us to select elements based on a range of new criteria."
PASS MADE, Part 1 of 2 | David DeWinter - 0 views
-
By now we have probably all heard about something known as "non-functional" requirements. But sometimes in the projects we've had at Neumont, they've been fudged a bit because no one (in my experience, at least) took the time to thoroughly explain what categories of requirements should be covered. This blog will look at some of the requirements categories that can be included, depending on the constraints of the business. Recently I've come across an acronym called PASS MADE
-
PASSMADE. Required reading for any web developer.
SimpLESS - Your LESS CSS Compiler - 3 views
What technical details should a programmer of a web application consider before making ... - 0 views
What every web developer must know about URL encoding - 0 views
What should every programmer know about security? - Stack Overflow - 0 views
« First
‹ Previous
41 - 60 of 1469
Next ›
Last »
Showing 20▼ items per page