html - Is it good practice to nest bootstrap grid inside smaller elements on the page -
i using bootstrap responsive grid system need whole framework.
understand should use grid system layout of page.
example have 1 div
should contain image on left , text on right side.
can put bootstrap grid inside div
desired layout 2 columns.
how bootstrap grid should used or bad practice , shouldn't use grid inside smaller elements?
it fine long place grid elements in right order of hierarchy:
container[-fluid]
> row
> col-??-##
> row
> col-??-##
, on.
remember never nest container
inside container
. should not place container
followed col
element.
all in all, it's ok give layout inner part of div regardless of size.
Comments
Post a Comment