Posts by Rafael Souza • 66 points
6 posts
-
1
votes1
answer876
viewsA: Navbar Collapse bootstrap does not push other div down
I tested your code, and is having normal behavior, alias, this css informed your is "hiding" the top menu up, getting weird, I suggest removing. To illustrate, look at working: <!DOCTYPE html>…
-
1
votes1
answer1305
viewsA: How do I set up @media for mobile?
I tested your code, without any modifications and it’s working properly. Since you didn’t send all the code, the only thing I did was add a head and finish the code with the bootstrap’s own pattern,…
-
0
votes1
answer200
viewsA: Problem for horizontally aligning responsive layout using Bootstrap
To make your images responsive using the bootstrap pattern, you can use the "img-Fluid" class to get like this: <img src="..." class="img-fluid" alt="Responsive image"> And to modify the size…
-
0
votes1
answer670
viewsA: Responsiveness using React and Bootstrap
To grab the whole screen, you need to use the "container-Fluid" there it will pick up 100% of the screen. Different from the "container" that leaves boxed the layout. I hope I’ve helped. More…
-
1
votes1
answer67
viewsA: What’s the difference of using function with THIS or OBJ parameter?
Well, if I understand your question is because this is reserved by the parser, then you can’t use it as a function parameter, because it can be used inside it to set information in the function. You…
-
2
votes1
answer194
viewsA: Run function only when user drops input type="range"?
What you can do is use the .on mouse event, as an example: .on('mouseup', handler) ou .on('mousedown', handler) Jquery allows the use of shortcuts to call these events, such as: $( "#alvo"…