Book Image

Learning Zurb Foundation

By : Kevin Horek
Book Image

Learning Zurb Foundation

By: Kevin Horek

Overview of this book

<p>Responsive web design is the next big thing in web design right now. It allows you to control and adapt to the user experience across a variety of devices, screens, and resolutions. Foundation is one of the most well-known responsive frameworks available, and allows you to speed up the prototyping, designing, and theming of your web project; as well as allowing you to create your own custom themes to suit your needs. It makes your life easier by giving you a grid, elements, and JavaScript functions that are responsive and easily customized to work with any web or mobile project that arises.</p> <p>This book starts off with teaching you the basics, and gradually moves on to cover the most advanced parts of this amazing framework. You will learn how to use Foundation to prototype, design, and theme your projects as well as discover how to use the framework with any programming language or content management system.</p>
Table of Contents (17 chapters)
Learning Zurb Foundation
Credits
About the Author
About the Reviewers
www.PacktPub.com
Preface
Index

Lists


Next, let's cover lists. These are pretty standard, but you can write whatever custom CSS you want to customize lists for your projects. However, there are a few things you should know that can help with these customizations. So, let's start with the basic list. Enter the following code below your paragraph of content; this should be around line 76 and make sure it is above your pagination:

<ul>
  <li>List 1</li>
  <li>List 2</li>
  <li>List 3</li>
 </ul>

You will see your basic list with disk bullets. You can include any of these classes in <ul>: circle, square, disk, or no-bullet. Give it a try! For our one-page demo site, we will use the square bullet, as shown in the following code:

<ul class="square">
  <li>List 1</li>
  <li>List 2</li>
  <li>List 3</li>
 </ul>

Inline lists

If you want your list items to not have bullets and be inline, you can just use the inline-list class. This is...