Search icon CANCEL
Subscription
0
Cart icon
Cart
Close icon
You have no products in your basket yet
Save more on your purchases!
Savings automatically calculated. No voucher code required
Arrow left icon
All Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Newsletters
Free Learning
Arrow right icon
Arrow up icon
GO TO TOP
Responsive Web Design with HTML5 and CSS3, Second Edition

You're reading from  Responsive Web Design with HTML5 and CSS3, Second Edition

Product type Book
Published in Aug 2015
Publisher Packt
ISBN-13 9781784398934
Pages 312 pages
Edition 1st Edition
Languages
Author (1):
Ben Frain Ben Frain
Profile icon Ben Frain
Toc

Table of Contents (17) Chapters close

Responsive Web Design with HTML5 and CSS3 Second Edition
Credits
About the Author
About the Reviewers
www.PacktPub.com
Preface
1. The Essentials of Responsive Web Design 2. Media Queries – Supporting Differing Viewports 3. Fluid Layouts and Responsive Images 4. HTML5 for Responsive Web Designs 5. CSS3 – Selectors, Typography, Color Modes, and New Features 6. Stunning Aesthetics with CSS3 7. Using SVGs for Resolution Independence 8. Transitions, Transformations, and Animations 9. Conquer Forms with HTML5 and CSS3 10. Approaching a Responsive Web Design Index

CSS3 structural pseudo-classes


CSS3 gives us more power to select elements based upon where they sit in the structure of the DOM.

Let's consider a common design treatment; we're working on the navigation bar for a larger viewport and we want to have all but the last link over on the left.

Historically, we would have needed to solve this problem by adding a class name to the last link so that we could select it, like this:

<nav class="nav-Wrapper">
  <a href="/home" class="nav-Link">Home</a>
  <a href="/About" class="nav-Link">About</a>
  <a href="/Films" class="nav-Link">Films</a>
  <a href="/Forum" class="nav-Link">Forum</a>
  <a href="/Contact-Us" class="nav-Link nav-LinkLast">Contact Us</a>
</nav>

This in itself can be problematic. For example, sometimes, just getting a content management system to add a class to a final list item can be frustratingly difficult. Thankfully, in those eventualities, it's no longer a concern...

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 $15.99/month. Cancel anytime}