R
R
Rodion Bizyaev2018-12-24 14:12:51
Bootstrap
Rodion Bizyaev, 2018-12-24 14:12:51

Bootstrap - what is it, and what is its essence?

Good afternoon! Interested in a topic related to Bootstrap.
What is it, if explained in simple terms? What are the opportunities and why do most vacancies imply his knowledge?
I’m good friends with Google, but I don’t find an answer in a nutshell what it gives.
As I understand it, you can work directly in it, and someone simply integrates its scripts into the code and works further.

Answer the question

In order to leave comments, you need to log in

4 answer(s)
M
Maxim Timofeev, 2018-12-24
@Bear027

Any framework is a set of ready-made frequently used methods, blanks, etc. Its goal is to reduce development time. It already implements what is most often used.
Bootstrap is a css framework + some commonly used js solutions.
game. You can work with or without it. You can use it in different ways. You can connect the whole, you can collect only what is required in parts through the assemblers (do not go deep into this yet, use the simple option).

I
iBird Rose, 2018-12-24
@iiiBird

Bootstrap is a css framework.
In a nutshell - it contains the basic css rules that make layout easier.
Those. to create a site with 3 columns, you do not need to build css styles and create these columns yourself, but just write

<div class="row">
      <div class="col-md-4"></div>
      <div class="col-md-4"></div>
      <div class="col-md-4"></div>
    </div>

without a single style in css.
Well, you can also go through the remote elements of the bootstrap components. such as ready-made modals, dropdowns, tabs, etc.

O
OnYourLips, 2018-12-24
@OnYourLips

A framework is a framework that defines a particular style of work.
And the point here is not even the amount of time that you need to spend on doing something similar to yourself (and it is simply colossal), but its well-known, documented and the presence of a huge community.

S
Sanes, 2018-12-24
@Sanes

Think of it as HTML/CSS template.

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question