CSS cookbook
What people are saying about CSS Cookbook ""Christopher's fantastic cookbook will give you solutions to pretty much all of the CSS problems you'll come up against in your day-to-day web design work, saving you bags of time and frustration. This guy is one of the industry's...
Autor principal: | |
---|---|
Otros Autores: | |
Formato: | Libro electrónico |
Idioma: | Inglés |
Publicado: |
Beijing ; Sebastopol, California :
O'Reilly
[2010]
|
Edición: | 3rd ed |
Materias: | |
Ver en Biblioteca Universitat Ramon Llull: | https://discovery.url.edu/permalink/34CSUC_URL/1im36ta/alma991009628427506719 |
Tabla de Contenidos:
- Table of Contents; Foreword; Preface; Audience; Assumptions This Book Makes; Contents of This Book; Conventions Used in This Book; Using Code Examples; We'd Like to Hear from You; Safari® Books Online; Acknowledgments; Chapter 1. Using HTML Basics; 1.0 Introduction; Structuring Documents; Semantic Markup; Avoiding Old-Tag Soup; HTML Is Document Structure; 1.1 Picking a Text Editor; Problem; Solution; Discussion; More robust, still free; IDE solutions; See Also; 1.2 Coding a Basic HTML Page; Problem; Solution; Discussion; See Also; 1.3 Understanding DOCTYPEs and Effects on Browser Layout
- ProblemSolution; Discussion; Quirks mode; Why not use the latest DOCTYPE?; The smallest web page ever; See Also; 1.4 Marking Up Headers; Problem; Solution; Discussion; See Also; 1.5 Making Appropriate Quotations; Problem; Solution; Discussion; See Also; 1.6 Adding an Image; Problem; Solution; Discussion; Additional tips; File formats; Character case sensitivity; See Also; 1.7 Adding Audio with HTML5; Problem; Solution; Discussion; Audio compatibility; See Also; 1.8 Incorporating Video with HTML5; Problem; Solution; Discussion; See Also; 1.9 Using strong and em Effectively; Problem
- SolutionDiscussion; See Also; 1.10 Creating Lists; Problem; Solution; Discussion; See Also; 1.11 Making a Link to a Web Page; Problem; Solution; Discussion; Linking to another web page on the same site; Moving up folders; Using the root relative link; Linking to certain elements within a web page; See Also; 1.12 Coding Tables; Problem; Solution; Discussion; See Also; 1.13 Creating an HTML vCard (hCard); Problem; Solution; Discussion; Extending hCards; See Also; 1.14 Marking Up an Event (hCalendar); Problem; Solution; Discussion; See Also; 1.15 Validating HTML; Problem; Solution
- DiscussionCreating an HTML validator bookmarklet; See Also; Chapter 2. CSS Basics; 2.0 Introduction; 2.1 Applying CSS Rules to a Web Page; Problem; Solution; Discussion; Wrapping the CSS rules; See Also; 2.2 Using Basic Selectors to Apply Styles; Problem; Solution; Discussion; Type selectors; Class selectors; ID selectors; Descendant selectors; Universal selectors; See Also; 2.3 Applying Child Selectors; Problem; Solution; Discussion; See Also; 2.4 Applying Adjacent Selectors; Problem; Solution; Discussion; See Also; 2.5 Applying Attribute Selectors; Problem; Solution; Discussion
- See Also2.6 Using Pseudo-Classes; Problem; Solution; Discussion; CSS3 pseudo-classes; See Also; 2.7 Using Pseudo-Elements; Problem; Solution; Discussion; See Also; 2.8 Determining When to Use Class and ID Selectors; Problem; Solution; Discussion; HTML5 divisions; See Also; 2.9 Understanding CSS Properties; Problem; Solution; Discussion; See Also; 2.10 Understanding the Box Model; Problem; Solution; Discussion; See Also; 2.11 Associating Styles to a Web Page; Problem; Solution; Discussion; When to use inline styles; When to use internal stylesheets; See Also
- 2.12 Understanding the Origin