All Questions
Tagged with react-bootstrap bootstrap-4
363 questions
0
votes
1
answer
54
views
Column content overflowing the column [duplicate]
I am using React and Bootstrap.
I have defined a container, a row, and columns.
When the screen is shrunk, the page is responsive in that the columns shrink or expand relative to the page.
However, ...
1
vote
2
answers
378
views
Prime React Dropdown filter is not working properly
I am using primereact/dropdown to render my locations list in which user can select the in the list but I am also using the filter method in the dropdown to make the user also have the search ...
2
votes
1
answer
92
views
How to apply Flex Direction in React
I create a sample web Page using Cards in React, I used React Bootstrap for Cards
Here I can't set flex Property.
This is my Component:
import 'bootstrap/dist/css/bootstrap.min.css';
import Card from ...
-1
votes
1
answer
67
views
How to use Classname in react to give Bootstrap class and CSS file style in same "Classname" field
<div class="form-group" className=''>
<input type="password" class="form-control" className={loginStyle.passwordDiv}
id="...
0
votes
1
answer
46
views
How to make React-Bootstrap hamburger style menu collapse when a link inside it is clicked?
I am using react-bootstrap library inside my projects, and I am designing a website where all of the content is on one page, hence all of my links are references to scroll positions of that same page. ...
0
votes
1
answer
103
views
Pagination.Item kept active all the time, I have no idea why
I currrently using react bootstrap, and I having weird output, this is my Paginate.js
import Pagination from 'react-bootstrap/Pagination';
import { LinkContainer } from 'react-router-bootstrap';
...
0
votes
1
answer
142
views
Customising React-Bootstrap vs Bootstrap in project
I had a question about customising React-Bootstrap components.
I have a simple page with 3 columns as below. I want the middle column to be wider than the first and third columns.
Currently, I am ...
0
votes
0
answers
37
views
react-bootstrap <Button> not working properly The background color not workıng just when hover
my project was workıng just fin till one day the buttons that i import from the react bootstrap background color stop working and i tried many ways to solve it
like using clasname or uninstall and ...
0
votes
0
answers
190
views
react-bootstrap dropdown not showing the dropdown arrow
React-bootstrap has following snippet here:
<DropdownButton id="dropdown-basic-button" title="Dropdown button">
<Dropdown.Item href="#/action-1">Action<...
0
votes
3
answers
48
views
Upper div is overlapped by lower div in smaller viewport
I am embedding some dashboard widgets in iframe. I want to make them responsive. So when I reduce screen size, I want each widget to occupy full width and when the browser window is big (md+) I want ...
1
vote
1
answer
1k
views
Is a react-bootstrap column not a flex item?
I found something weird while working with react-bootstrap. I have nested rows in columns, but I realised that it's impossible to make one of the rows fill up all available space in the column (...
0
votes
1
answer
43
views
React-Bootsrap Col extra spacing right
I want all the corder components pulled into a corner of the screen using react and react-bootstrap. Whatever I try, the Col wrapping the SVG component adds extra space on the right. For the left side ...
0
votes
1
answer
4k
views
how to have multiple cards in each Carousel slide react-bootstrap
I'm working with react-bootstrap and I have my data coming from an API and saved in recipes as an array.
I'm trying to have Carousel with react-bootstrap but right now it shows each item on a separate ...
-1
votes
1
answer
225
views
How to center content inside Row element
I am trying to center some cards inside a row element but I cant get it to work!
<Row className="d-flex justify-content-center">
{cardData.map((data) => {
...
0
votes
1
answer
164
views
column becomes similar to row when too much text is written inside
I'm developing a practice app with some messages and when I'm trying to add style to the message happens this issue.
In my example I have the profile picture of the user and at the side the message, ...