What’s New In Bootstrap v4?

Slides:



Advertisements
Similar presentations
Twitter Bootstrap. Agenda What is it? Grids and Fluid layouts Globals and Typography Tables, Forms and Buttons Navigation Media and thumbnails Responsive.
Advertisements

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.
Today’s objectives Site performance Padding, Margins, Borders
CISC 474: Advanced Web Technologies HTML5 & CSS3, & Responsive Design.
TUTORIAL 8: Enhancing a Web Site with Advanced CSS
HTML & CSS A brief introduction. OUTLINE 1.What is HTML? 2.What is CSS? 3.How are they used together? 4.Troubleshooting/Common problems 5.More resources.
IE11 Preview is here! Briefing prepared for the IE MVPs and IE userAgents communities.
Session II Outline Typography Session II – Exercise 1 Chapter 8 – Navigation Chapter 4 – Jumbotron Session II – Exercise 2.
Copyright © Terry Felke-Morris WEB DEVELOPMENT & DESIGN FOUNDATIONS WITH HTML5 7 TH EDITION Chapter 7 Key Concepts 1 Copyright © Terry Felke-Morris.
Use CSS to Implement a Reusable Design Selecting a Dreamweaver CSS Starter Layout is the easiest way to create a page with a CSS layout You can access.
Frontend - HTML5 - CSS3 - Bootstrap 3.x. SemanticsPerformanceCSS3.
Lab 4: Bootstrap and Responsive Design User Interface Lab: GUI Lab Sep. 16 th, 2014.
Introduction to Bootstrap
learn. do. dream. Bootstrapping with Twitter Bootstrap Responsive Layouts CSS Components JavaScript Font Awesome Select2 Themes.
Bootstrap Front-End Framework for Responsive Web Sites Svetlin Nakov Technical Trainer Software University
A gentle introduction to Bootstrap MIS 3502, Spring 2016 Jeremy Shafer Department of MIS Fox School of Business Temple University 2/18/
Cheryl Wolfe Web Services Administrator Tampa-Hillsborough County Public Library James Day Electronic Services Librarian Embry-Riddle Aeronautical University.
Fundamentals of Web DevelopmentRandy Connolly and Ricardo Hoar Textbook to be published by Pearson Ed in early Bootstrap.
INTRODUCTION ABOUT DIV Most websites have put their content in multiple columns. Multiple columns are created by using or elements. The div element is.
Chapter 4 Bootstrap. Content Bootstrap with CSS Bootstrap Layout Components Bootstrap Plugins.
Front-end framework 1.
What’s New in Bootstrap v4
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
Animation and Flexboxes
Tk Widgets in Javascript
PHP MySQL Crash Course with HTML CSS
Twitter Bootstrap Grid System
Implementing Responsive Design
CSS Bootstrap.
Website implementation
Front-End Framework for Responsive Web Sites
Responsive Design and Twitter Bootstrap
Positioning Objects with CSS and Tables
Introduction to Bootstrap Bootstrap සදහා හැදින්වීම
© 2016, Mike Murach & Associates, Inc.
User Interface Design and Usability Bootstrap
CS3220 Web and Internet Programming Page Layout with CSS
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
CS3220 Web and Internet Programming Page Layout with CSS
CSS part 2 Outro.
Web Development & Design Foundations with HTML5 7th Edition
HTML5 Level III Responsive Web Design (RWD) and Front-End Frameworks
APTECH JANAKPURI INSTITUTE PROVIDING WEB DESIGNING COURSES Address:- J-1,2nd Floor, Opp Metro Pillar No – 559, Janakpuri East, Delhi /42.
Responsive Web Design (RWD)
Bootstrap Components Reusable components built to provide iconography, dropdowns, input groups, navigation, alerts, and much more.
Robert Kiffe Senior Customer Support Engineer
CMP Creating Your Personal and Small Business Web Sites
Responsive Web Design (RWD)
Jeremy Foster Michael Palermo
HTML5 Level III Responsive Web Design (RWD) and Front-End Frameworks
Responsive Web Design and Bootstrap
06 | Introduction to Bootstrap
Responsive Grid Layout with Bootstrap
CS3220 Web and Internet Programming Page Layout with CSS
Responsive Web Design and Bootstrap
CS3220 Web and Internet Programming Introduction to Bootstrap
HTML5 Level III Responsive Web Design (RWD) and Front-End Frameworks
Exploring Bootstrap Components
ხელმძღვანელი: დიმიტრი ქარაული
Bootstrap 4 December 17, 2018.
CSS Layout: Flexbox.
Positioning Objects with CSS and Tables
Bootstrap Direct quote from source: bootstrap/
Bootstrap/WebFlow Web development of the future
ITI 133: HTML5 Desktop and Mobile Level I
Presentation transcript:

What’s New In Bootstrap v4? TraversyMedia.com

Sass CSS Pre-Compiler Moved from Less to Sass As of v3 a Sass port was created and maintained Sass is favored in the web dev community Use of Libsass to compile faster

Button Styles & Flat Design Flat style over gradient More subtle look .btn-outline-* class

Improved Grid System & Layout Changes in the underlying architecture rem & em units instead of pixels New –xl tier for extra large screens Grid now uses flexbox offset-md-4 instead of col-offset-md-4

Flexbox Includes flexbox utilities Use flexbox to manage grid columns, navigation, components and more Display utilities can transform children items into flex items <div class="d-flex p-2">I'm a flexbox container!</div>

Cards Cards replace panels, wells and thumbnails Uses flexbox Get same behavior with modifiers As little markup as possible .card-block instead of .well Use .card-title for titles Image Headings

Responsive Floats Easily float elements based on grid tier No need for custom media queries Class examples .float-md-right .float-lg-left .float-sm-right New spacing utility classes available

Changes To The Navbar Flat design Uses flexbox instead of floats No longer require the .nav base class .navbar-toggleable classes are now applied to .navbar

Form Changes Dropped the .form-horizontal class Forms using grids require the .row class and can use .col-form-label for labels Use .form-control-lg and .form-control-sm to increase or decrease the size of an input control. Help text now uses the .form-text class instead of .help-block

JavaScript Plugins All plugins have been re-written with ES6 syntax Takes advantage of new JS enhancements UMD support jQuery 2.0 supported

Some Other Changes Bigger fonts and headings Dropped support for IE8 + IE9 Reboot module Inversed tables (.table-inverse) 30% lighter Glyphicons dropped (Font-awesome recommended) To Migrate: https://v4-alpha.getbootstrap.com/migration/