300 likes | 389 Views
WEB DEVELOpment immersive building page layouts. Topics. Box Model Scaling Positioning Boxes Box Aesthetics HTML 5 Semantic Tags CSS Resets. Box Model. Padding (spacing inside an element) Margin (spacing outside an element) Border (colors, styles). W3C Box Model. IE Box Model.
E N D
Topics • Box Model • Scaling • Positioning Boxes • Box Aesthetics • HTML 5 Semantic Tags • CSS Resets WEB DEVELOPMENT IMMERSIVE
Box Model • Padding (spacing inside an element) • Margin (spacing outside an element) • Border (colors, styles) WEB DEVELOPMENT IMMERSIVE
W3C Box Model WEB DEVELOPMENT IMMERSIVE
IE Box Model WEB DEVELOPMENT IMMERSIVE
IE Box Model FIX SOLUTIONS • CSS 1 & 2 hacks • Box in a box method • CSS 3 box-sizing property WEB DEVELOPMENT IMMERSIVE
CSS 1 & 2 Hacks (Don’t Do this!) div { width: 100px; }div { \width: 140px; w\idth: 100px;} WEB DEVELOPMENT IMMERSIVE
BOX IN A BOX METHOD (100% support) div { width: 100px; padding:0; margin:0; } .i { padding: 1em; } <div> <div class="i"> Text </div> </div> WEB DEVELOPMENT IMMERSIVE
CSS 3 Box-sizing property (90.2% support) div { box-sizing:border-box; } /* IE model = border-box W3C model = content-box */ WEB DEVELOPMENT IMMERSIVE
CSS 3 Box-sizing support WEB DEVELOPMENT IMMERSIVE
Scaling elements • Static (px) • Fluid (%) • Responsive (min, max) • Auto WEB DEVELOPMENT IMMERSIVE
Content OVERFLOW WEB DEVELOPMENT IMMERSIVE
Positioning (part 1) • Static (default) • Floating WEB DEVELOPMENT IMMERSIVE
Floating WEB DEVELOPMENT IMMERSIVE
Clearing WEB DEVELOPMENT IMMERSIVE
Clearing clear:both; WEB DEVELOPMENT IMMERSIVE
Floating WEB DEVELOPMENT IMMERSIVE
Box aesthetics • Background (color, images) • Box Shadow • Borders • Border Radius • Opacity WEB DEVELOPMENT IMMERSIVE
Background Properties background-color: background-image: background-position: background-repeat: background-scroll: background-size: background: WEB DEVELOPMENT IMMERSIVE
Box SHADOW WEB DEVELOPMENT IMMERSIVE
Border styles WEB DEVELOPMENT IMMERSIVE
Border radius WEB DEVELOPMENT IMMERSIVE
opacity WEB DEVELOPMENT IMMERSIVE
HTML 5 Semantic layout tags • Header • Footer • Nav • Aside • Section • Article • Hgroup • Figure • Figcaption WEB DEVELOPMENT IMMERSIVE
Div layout WEB DEVELOPMENT IMMERSIVE
Html5 sematic tag layout WEB DEVELOPMENT IMMERSIVE
CSS RESETS WEB DEVELOPMENT IMMERSIVE
Popular CSS RESETS • Meyers • Toucan • YUI • “poor-man’s” WEB DEVELOPMENT IMMERSIVE
Poor man’s reset html, body { padding: 0; margin: 0; } html { font-size: 1em; } body { font-size: 100%; } a img, a:link img, a:visited img { border: 0; } WEB DEVELOPMENT IMMERSIVE