Search icon CANCEL
Subscription
0
Cart icon
Your Cart (0 item)
Close icon
You have no products in your basket yet
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Free Learning
Arrow right icon
Arrow up icon
GO TO TOP
Developing Mobile Web ArcGIS Applications

You're reading from   Developing Mobile Web ArcGIS Applications Learn to build your own engaging and immersive geographic applications with ArcGIS

Arrow left icon
Product type Paperback
Published in Feb 2015
Publisher
ISBN-13 9781784395797
Length 156 pages
Edition 1st Edition
Tools
Arrow right icon
Toc

The magic of style sheets

At the heart of both responsive and progressive approaches to cross-device development is Cascaded Style Sheets (CSS). This is the industry standard for styling the presentation and positioning of web page elements. Bootstrap relies on CSS Media queries that allow developers to specify when certain CSS rules should be applied. They can be used to deliver a tailored style sheet to a specific device. There are many places where we can add these queries to our code. For example, they can be links in our HTML:

<link rel="stylesheet" type="text/css"
  media="screen and (max-device-width: 480px)"
  href="responsiveArcGIS1.css" />

The media parameter in the preceding code contains two components: A media type (screen) represents the actual query enclosed within parentheses containing a particular media feature (max-device-width) to inspect, that is followed by the target value (480px)

What we are doing here is asking the device...

lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at $19.99/month. Cancel anytime
Banner background image