|
Korson.us |
CFCs (ColdFusion Components) Tutorial |
ColdFusion Web Service Tutorial |
|
ColdFusion Code |
Cfchart |
XML |
Responsive Web Design |
JavaScript Tutorial |
.NET
|
A fluid grid consists of 12-columns that shrinks with the view of the browser. For example a mobile device, phablet, tablet, desktop; or, desktop HD.
All inputs, select, and buttons are normalized for a common height cross-browser so inputs can be stacked or placed alongside each other.
Name | Age | Sex | Location |
---|---|---|---|
Ted Gammon | 26 | Male | San Francisco |
David Lec | 42 | Male | Hayward |
min-width
property. My media queries are as follows:
/* Desktop or Desktop HD - Screens with a width of 960px or higher. */
@media all and (min-width: 960px) {
html {
font-size:62.5%;
}
}
/* Phablet or Tablet - Screens with a minimum width of 600px and maximum width of 959px. */
@media all and (max-width: 959px) and (min-width: 600px) {
html {
font-size:58%;
}
}
/* Mobile Device - Screens with minimum width of 320px and maximum width of 599px. */
@media all and (max-width: 599px) and (min-width: 320px) {
html {
font-size:53.5%;
}
}