• Complain

Maria Antonietta Perna - Bootstrap: Related Tools & Skills

Here you can read online Maria Antonietta Perna - Bootstrap: Related Tools & Skills full text of the book (entire story) in english for free. Download pdf and epub, get meaning, cover and reviews about this ebook. year: 2018, publisher: SitePoint, genre: Home and family. Description of the work, (preface) as well as reviews are available. Best literature library LitArk.com created for fans of good reading and offers a wide selection of genres:

Romance novel Science fiction Adventure Detective Science History Home and family Prose Art Politics Computer Non-fiction Religion Business Children Humor

Choose a favorite category and find really read worthwhile books. Enjoy immersion in the world of imagination, feel the emotions of the characters or learn something new for yourself, make an fascinating discovery.

Maria Antonietta Perna Bootstrap: Related Tools & Skills

Bootstrap: Related Tools & Skills: summary, description and annotation

We offer to read an annotation, description, summary or preface (depends on what the author of the book "Bootstrap: Related Tools & Skills" wrote himself). If you haven't found the necessary information about the book — write in the comments, we will try to find it.

Bootstrap stands as one of the most popular, open-source, front-end frameworks on the Web. Since its official release in 2011, it has undergone several changes, and its now one of the most stable and responsive frameworks available. Its loved by web developers of all levels, as it gives them the capability to build a functional, attractive website design within minutes. A novice developer with just some basic knowledge of HTML and little CSS can easily get started with Bootstrap.

In this book, well look at some related tools and skills that will help you with Bootstrap development. It contains:

  • 15 Bootstrap Tools and Playgrounds by David Attard
  • An Introduction to Grid Systems in Web Design by Callum Hopkins
  • Bootstrap UI Libraries for Angular, React and Vue.js by Maria Antonietta Perna
  • Bootstrap Grid: Mastering the Most Useful Flexbox Properties by Ahmed Bouchefra
  • Bootstrap Sass Installation and Customization by Reggie Dawson
  • The 5 Most Popular Front-end Frameworks Compared by Ivaylo Gerchev
  • The CSS Grid Layout vs CSS Frameworks Debate by Maria Antonietta Perna
  • This book is for all frontend developers who want to build responsive, mobile-first websites. Youll need to be familiar with HTML and CSS and have a reasonable level of understanding of JavaScript in order to follow the discussion.

    Maria Antonietta Perna: author's other books


    Who wrote Bootstrap: Related Tools & Skills? Find out the surname, the name of the author of the book and a list of all author's works by series.

    Bootstrap: Related Tools & Skills — read online for free the complete book (whole text) full work

    Below is the text of the book, divided by pages. System saving the place of the last page read, allows you to conveniently read the book "Bootstrap: Related Tools & Skills" online for free, without having to search again every time where you left off. Put a bookmark, and you can go to the page where you finished reading at any time.

    Light

    Font size:

    Reset

    Interval:

    Bookmark:

    Make
    Chapter 7: The CSS Grid Layout vs CSS Frameworks Debate
    by Maria Antonietta Perna

    With cutting-edge CSS standards like CSS Grid Layout and Flexbox, coding a web page layout is no longer such a pain. If you add to this that browser support for both Grid and Flexbox is pretty good too, then the question is bound to come up: Why should consider learning and using CSS frameworks in my development work?

    In this article, Ill focus on Bootstrap, since its arguably one of the most popular among all the CSS UI libraries available out there.

    In my view, there are still a number of reasons why it does still make sense to learn and use Bootstrap today.

    Heres a few of them for you.

    What Is CSS Grid?

    Rachel Andrew, a well-known speaker and writer on all things CSS Grid-related, defines it as follows:

    Grid is a grid system. It allows you to define columns and rows in your CSS, without needing to define them in markup. You dont need a tool that helps you make it look like you have a grid, you actually have a grid!

    The implementation of this CSS standard gives developers the much needed ability to build page layouts with native CSS code, with no dependency from the HTML markup except for the presence of a wrapper element that works as containing grid. Just imagine the flexibility and the potential for creativity in web design!

    For instance, you dont need custom classes or extra rows in your markup to build this simple layout:

    Heres the HTML Header content Main content Sidebar Footer As for the CSS - photo 1

    Heres the HTML:

    Header contentMain contentSidebarFooter

    As for the CSS, this is where youre going to build your visual layout. All it takes in this simple case is a few lines of code:

    .grid { display: grid; grid-template-columns: repeat(12, 1fr); grid-template-rows: 50px 150px 50px;}header, footer { grid-column: span 12;}main { grid-column: span 8;}aside { grid-column: span 4;}

    Thats it, youre done! Not bad.

    What Is Bootstrap?

    At the time of this writing, 3.6% of the entire Internet uses Bootstrap:

    On the Bootstrap website youll find this definition Bootstrap is an - photo 2

    On the Bootstrap website, youll find this definition:

    Bootstrap is an open-source toolkit for developing with HTML, CSS, and JS. Quickly prototype your ideas or build your entire app with our Sass variables and mixins, responsive grid system, extensive prebuilt components, and powerful plugins built on jQuery.

    In other words, Bootstrap gives you ready-made components that allow you to whip up a beautiful web page in no time.

    Just write the appropriate markup, and your app looks great out of the box.

    Bootstrap makes it also super easy to customize its look and feel to your liking and lets you pick and choose the bits you need for your project.

    Why Bootstrap When We Have Grid?

    The biggest complaint about Bootstrap has always been code bloat. The reasoning was that it included lots of extra CSS code that remained unused in your projects. The second biggest complaint was that Bootstrap components were styled in every detail and this could present some problems when it came to overriding some CSS rules.

    Starting with the latest version of this popular front-end component library, both criticisms fall to pieces: Bootstrap is totally modular, so you just include what you need. Also, the Sass files are structured in such a way as to make it very convenient to customize the original styles to your needs.

    Today, the main reason against using Bootstrap is the fact that with CSS Grid, CSS has a grid system of its own, which doesnt have any external dependencies, and which, once learned, enables developers to build all sorts of layouts with relative ease.

    Although Im a CSS Grid fan, I think Bootstrap has still its place in front-end development and will have for some time to come.

    Here are at least three reasons why.

    Bootstrap Is More Than Its Grid System

    Its true, the #1 reason to use Bootstrap is the handy grid system, which makes it a breeze to build responsive web pages. However, Bootstrap has some great components like the versatile new card component, which you can use to display all types of content, such as text, images and videos, and the responsive navbar, which works out of the box. You can also pick a ready-made color scheme of your liking for most components.

    And what about the functionality of a good many of these components? With Bootstrap, adding dynamic tooltips, carousels, or dropdown buttons is just a matter of writing the appropriate markup. If JavaScript is not your forte, you can still take advantage of these components without writing a line of JavaScript.

    Also, if youre not a CSS wizard, you can still leverage the power of Bootstrap in your web design while youre learning the tricks of the trade.

    Bootstrap Is a Great Prototyping Tool

    Sometimes you just need to a working prototype for a client. Bootstrap lets you do this in no time and with very little to no custom code. This doesnt only hold for the grid system, but also for all the ready-made components it has to offer.

    Just add a little markup and your prototype will boast a sleek responsive navigation bar or a fancy alert box.

    Working on Older Websites Built With Bootstrap

    One common task for developers is to work on existing websites coded by other developers. Theres no denying the fact that a huge number of websites rely on Bootstrap for their front end. Knowing how to work with the framework will come very handy if its up to you to refactor and maintain the codebase. Its not by chance that still lots of job postings have Bootstrap in their list of desired skills.

    Conclusion

    To conclude, Bootstrap is not going away any time soon. The latest release comes with huge improvements over the previous versions, from the clever use of Sass mixins and maps for easy customization to the introduction of new components, utility classes, and an ever more modular architecture.

    Add to this great documentation and ease of use, and Bootstrap is still a mighty contender in the front-end ecosystem.

    Chapter 6: The 5 Most Popular Front-end Frameworks Compared
    by Ivaylo Gerchev

    Theres a deluge of CSS front-end frameworks available nowadays. But the number of really good ones can be narrowed down to just a few. In this article, Ill compare what I think are the five best front-end frameworks available today.

    Each framework has its own strengths and weaknesses, and specific areas of application, allowing you to choose based on the needs of a specific project. For example, if your project is simple, theres no need to use a complex framework. Also, many of the options are modular, allowing you to use only the components you need, or even mix components from different front-end frameworks.

    The front-end frameworks Im going to explore are presented based on their GitHub popularity, beginning with the most popular, which is, of course, Bootstrap.

    Ahem, Excuse Me ...

    Note that some of the information below will go out of date in the coming weeks and months such as GitHub stars and version numbers so be aware of this if youre reading this article long after the publication date. Also note that the framework sizes are the minified sizes of the necessary CSS and JavaScript files.

    Next page
    Light

    Font size:

    Reset

    Interval:

    Bookmark:

    Make

    Similar books «Bootstrap: Related Tools & Skills»

    Look at similar books to Bootstrap: Related Tools & Skills. We have selected literature similar in name and meaning in the hope of providing readers with more options to find new, interesting, not yet read works.


    Reviews about «Bootstrap: Related Tools & Skills»

    Discussion, reviews of the book Bootstrap: Related Tools & Skills and just readers' own opinions. Leave your comments, write what you think about the work, its meaning or the main characters. Specify what exactly you liked and what you didn't like, and why you think so.