score:2
This is because now the latest bootstrap refers to v4 in the link https://maxcdn.bootstrapcdn.com/bootstrap/latest/css/bootstrap.min.css
You need to change your link to https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css where you have been including stylesheet most probably /public/index.html or just search through files where you are importing bootstrap from cdn and change it to version 3(3.3.7 in my case), because react-bootstrap(Navs, NavItems or any other components ) uses bootstrap v3 css
score:1
Change this: ]
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/latest/css/bootstrap.min.css">
to not lastes version, for ex.
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
Source: stackoverflow.com
Related Query
- Bootstrap stopped working with React
- Bootstrap Dropdown not working in React
- React bootstrap navbar collapse not working
- Reactstrap Bootstrap Navbar not working in react app
- Bootstrap Dropdown is not working in React
- Collapsed Navbar not working react and bootstrap 5
- React Bootstrap NavDropdown alignRight not working
- npm Bootstrap not working on new react project
- Bootstrap Modal is not working in React JS
- Responsive navigation menu with React and Bootstrap - hamburger isn't working
- Bootstrap dropdown not working with React router
- Bootstrap suddenly not working for my React JS project
- React Bootstrap fullscreen prop not working
- Bootstrap not working with React
- React Bootstrap Modal show is not working as expected
- React not working with Bootstrap
- React bootstrap Carousel not working properly
- react JS bootstrap JS not working
- Bootstrap is not working in laravel react ui
- React bootstrap custom nav link active style is not working
- React-Bootstrap stopped working overnight
- Fade transition not working on React Bootstrap Alert component
- Bootstrap v4 navbar , navbar-toggler-icon not working with react
- Bootstrap 5 dropdown stopped working after installing @popper/core
- React Bootstrap collapsible navbar not working
- Bootstrap breakpoints not working in React Bootstrap
- Bootstrap modal not working in React typescript app but working on the fiddle
- Routing in React 16 using Redux has stopped working
- Controllable React Bootstrap Carousel component not working
- Bootstrap toggle (navbar) is not working on first load React
More Query from same tag
- Why It’s difficult to remember which props or state are used by functions outside of the effect
- state resets when transitioning route(page)
- How to return redux state from async function?
- Clear one redux state on page transition
- React - Filtering objects in store causes recursion/infinity loop
- How to extract text without HTML Entities encoding from React ContentEditable?
- Error fetch from react to express without CRA(create-react-app)
- Serving a Create-React-App application with a Node/Express router module
- React - Can console log object, but not specific property of said object
- React setState inside script text content
- Why scrollWidth returns the same value of offsetWidth even when content overflows?
- Update useState Object Key Directly?
- How to resolve these TypeScript errors when using React refs?
- How to pass class variables in redux store and action?
- Why are these Jest tests failing? TypeError: Cannot read property 'apply' of undefined
- Could not find a declaration file for module '@tailwindcss/aspect-ratio'
- How should I fix TypeError "property 'props' of undefined"?
- How can you change only one class of multiple buttons rendered with map
- How to set props type of "a useState function"?
- Typescript + webpack (with hot reload) + NodeJS
- Can't get state with react-router. (maybe not working react-redux connect())
- Have to reinstall node_modules every time I install a package
- How to set up localization in react project?
- How to horizontal center the title in Material-UI AppBar
- React whole page scrollbar when component goes offpage
- Can't get response from axios POST request (React)
- useState hook is breaking activePost as useEffect is triggered by selectedPost
- Node app failing during reactDOM.render()
- Error to execute component test with react-test-renderer and storybook in a react app
- pass state around between express middleware in an isomorphic react app