Posts by Felipe Fialho • 56 points
5 posts
-
0
votes3
answers998
viewsA: How to work with multiple bootstrap columns,
I suggest taking out of your HTML code the function of organizing your grid. All this can be done via LESS. I mean... download the project on Github and create an environment to work with the files…
-
1
votes2
answers199
viewsA: How do I position two Ivs relative to a third (Fixed)?
Friend, do it like this: Add a div around everything, you can call it .wrap In this div, add a margin-top or padding-top of the same size as the div that is with position Fixed. This way, the…
-
2
votes4
answers549
viewsA: Element does not take the parent background
Background is not a property the child inherits from the parent. It is specific. You’d like the class .question-title had the white background, correct? So... .question-title{ background: #fff; }…
cssanswered Felipe Fialho 56 -
1
votes9
answers9696
viewsA: Is it right to use the <i> tag for icons and not italics?
I’ve seen the use of <i> for icons, but I don’t consider semantics. Icons do not fit the tag usage description <i>, therefore I still consider more appropriate the use of some element…
-
0
votes6
answers18042
viewsA: How to make a Custom Scrollbar?
I use the Nano Scroller, even contributes to it in the project repository on Github, I find an interesting plugin if you need such a solution. However, if you can work with "Progressive Enhancement"…