Book Image

Dreamweaver CS5.5 Mobile and Web Development with HTML5, CSS3, and jQuery

By : DAVID KARLINS
Book Image

Dreamweaver CS5.5 Mobile and Web Development with HTML5, CSS3, and jQuery

By: DAVID KARLINS

Overview of this book

<p>Dreamweaver is the most powerful and industry-leading web design software that utilizes cutting edge web technologies such as HTML5, CSS3, and jQuery for web and mobile development. These technologies have radically reconfigured the process of designing Web content and function in the widest possible range of browsing environments ranging from desktops to mobile devices.For experienced Dreamweaver designers and for designers new to Dreamweaver, this book explains in detail how to take advantage of the new features available in the latest releases of Dreamweaver that add support for HTML5, CSS3, and jQuery. In addition to this, the book also contains detailed step-by-step directions for building mobile apps in Dreamweaver CS5.5.This book starts off by teaching you to create web pages in Dreamweaver using the latest technology and approaches — HTML5, CSS3, and JavaScript. It demonstrates how to create or customize pages with HTML5 layouts and add multimedia to these pages with HTML5 elements. Then you will learn to add various CSS3 effects to web pages. The book also covers different techniques of adding interactivity to web pages. The later chapters show how to optimize web pages with Dreamweaver for display in various browsing environments. You will also learn to build jQuery-based mobile apps from scratch in the later chapters. By the time you're finished, you'll have learned several techniques to use the latest features of Dreamweaver for web and mobile development.</p>
Table of Contents (13 chapters)
12
Index

Inserting a Layout Grid

As we have discussed, columns play a greatly diminished role in pages designed for mobile devices. The reason is obvious: there isn't much width in the viewport of a mobile phone, and even tables have a narrower screen than laptops. Nevertheless, there are plenty of situations where it is useful to lay out content in columns in mobile-friendly pages. When that is appropriate, the tool is jQuery grids.

Inserting a Layout Grid

Can we use the good old <div> tags that served us so well in HTML to lay out page content in columns? Yes. What about using tables for layout? Well, that technique is actually supported within jQuery Mobile pages.

In addition, just to elaborate a bit, the only reason we don't use tables for page layout in jQuery pages is the same reason we don't use them anywhere else: they are clunky, hard to apply global styles to, hard to update, and don't support a lot of the attributes div containers support. That said, table design enthusiasts take note...