Chapter 2 Bootstrap Grid System

Slides:



Advertisements
Similar presentations
Bootstrap & CSS James Kahng. Intro Websites require a lot of upfront setup to look passably good (HTML base, CSS style, etc.) Because of this, people.
Advertisements

Chapter 4 – Intermediate HTML 4 Outline 4.1 Unordered Lists 4.2 Nested and Ordered Lists 4.3 Basic HTML Tables 4.4 Intermediate HTML Tables and Formatting.
© 2004, Robert K. Moniot Chapters 4 & 5 Introduction to HTML, More Details.
Using HTML to Create Tables in Web pages Connie Lindsey November 2005.
HTML Essentials Tables and Table Tags. Overview Use of Tables goes beyond tabulating data Frequently used to format Web pages / control layout Especially.
CHAPTER 11 Tables. How Are Tables Used Data Display  Very tidy and very useful Better Text Alignment  Putting text in tables allows you to format indents.
Chapter 5 Creating Page Templates
Actual Building the Pages Tables. Using Table Elements  To build effective page templates, you must be familiar with the HTML table elements and attributes.
CONCEPTS FOR FLUID LAYOUT Web Page Layout. Website Layouts Most websites have organized their content in multiple columns (formatted like a magazine or.
1 CSC 121 Computers and Scientific Thinking David Reed Creighton University HTML and Web Pages.
HTML: Tables & Frames Internet Technology1. HTML: Tables Table tags ► surround the entire table ► header row (text is boldfaced) ► surround each row ►
Designing a Web Page with Tables. A text table: contains only text, evenly spaced on the Web page in rows and columns uses only standard word processing.
HTML: Tables & Frames Internet Technology.
Chapter 5 Creating Page Templates. Principles of Web Design 2nd Ed. Chapter 5 2 Principles of Web Design Chapter 5 Objectives Understand table basics.
HTML Tables The HTML table model allows authors to arrange data - text, preformatted text, images, links, forms, form fields, other tables, etc. - into.
Introduction to Bootstrap
Bootstrap by:- Vignesh Dhamodaran. What is Bootstrap? Originally created by a designer and a developer at Twitter. So initial name is Twitter Bootstrap.
Bootstrap Front-End Framework for Responsive Web Sites Svetlin Nakov Technical Trainer Software University
Positioning Objects with CSS and Tables
 An HTML, CSS, Javascript framework you can use as a basis for creating web sites  Uses CSS settings, fundamental HTML elements styled and enhanced.
Tables creating a table within a web page. What makes up a table? Columns Rows.
Basic Elements of Responsive Web Design Jason Bengtson, MLIS, AHIP Emerging Technologies/R&D Librarian UNM Health Sciences Library and Informatics Center.
A gentle introduction to Bootstrap MIS 3502, Spring 2016 Jeremy Shafer Department of MIS Fox School of Business Temple University 2/18/
Fundamentals of Web DevelopmentRandy Connolly and Ricardo Hoar Textbook to be published by Pearson Ed in early Bootstrap.
>> CSS Layouts. Recall Properties of Box – Border (style, width, color) – Padding – Margin – Display – Background – Dimension Welcome Padding Area Border.
INTRODUCTION ABOUT DIV Most websites have put their content in multiple columns. Multiple columns are created by using or elements. The div element is.
A gentle introduction to Bootstrap TDAP Jeremy Shafer Department of MIS Fox School of Business Temple University Spring
Front-end framework 1.
Bootstrap KS Technologies.
CSCI 1720 W3.CSS – Part 1 East Tennessee State University Department of Computing CSCI 1720 Intermediate Web Design.
CNIT131 Internet Basics & Beginning HTML
>> Navigation and Layouts in CSS
Organizing Content with Lists and Tables
A gentle introduction to Bootstrap
CSS Bootstrap.
Website implementation
Front-End Framework for Responsive Web Sites
Human Computer Interaction
Concepts for fluid layout
Positioning Objects with CSS and Tables
Tables and Frames.
FRAMES.
Introduction to Bootstrap Bootstrap සදහා හැදින්වීම
© 2016, Mike Murach & Associates, Inc.
DHTML tidbits.
Bootstrap A popular HTLM, CSS, and JS framework for developing responsive, mobile first projects on the web.
CS3220 Web and Internet Programming Introduction to Bootstrap
IS1500: Introduction to Web Development
>> CSS Layouts.
Bootstrap響應式網頁設計 (Responsive Web Design, RWD)
Revision.
DHTML tidbits.
Computers and Scientific Thinking David Reed, Creighton University
A gentle introduction to Bootstrap
Responsive Framework.
DREAMWEAVER MX 2004 Chapter 3 Working with Tables
Responsive Web Design and Bootstrap
06 | Introduction to Bootstrap
HTML Tables & Frames Internet Technology.
DHTML tidbits.
Responsive Grid Layout with Bootstrap
Responsive Web Design (RWD)
Responsive Web Design and Bootstrap
CS3220 Web and Internet Programming Introduction to Bootstrap
Web Page Layout Imran Rashid CTO at ManiWeber Technologies.
Bootstrap 4 December 17, 2018.
Concepts for fluid layout
Positioning Objects with CSS and Tables
HTML Tables & Frames Internet Technology.
Presentation transcript:

Chapter 2 Bootstrap Grid System

One of the most important features of bootstrap Multiple rows and column Can put HTML in each row and column cell 12 columns for each row Responsive : columns size will resize when browser window change

Grid system : 1 row divide into 12 columns Each column has own distinct background color

Building a Basic Grid Delete H1 tag in BODY Write

Basic container class container : appear center container-fluid

Create Row

Create columns How many 12 col available to span 12 col span use class : col-xs-12 6 col span use class : col-xs-6

col-xs-6

give each one a background color

xs stand for in the class col-xs-6 1. col-xs for extra small displays (screen width < 768px) 2. col-sm for smaller displays (screen width ≥ 768px) 3. col-md for medium displays (screen width ≥ 992px) 4. col-lg for larger displays (screen width ≥ 1200px)

Bootstrap will automatically follow the layout specified for the smallest screen size. Hence, div will span 12 columns in all types

two rows and four columns in our layout

Creating a Dynamic Layout creating a dynamic layout that adjusts to the size of device it is viewed in.

Tablet view

Mobile display

Designing for Desktops blog.htm

Designing for Tablets

Designing for Mobile

Nesting Columns

Offsetting Columns

Reordering Grids Manually