On one of my pages, I have a bootstrap button that is disabled but the styling doesn't seem to be working correctly.
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.0.0-alpha.6/css/bootstrap.min.css">
<button disabled class="btn btn-primary">suivant</button>
<button class="btn btn-primary disabled">suivant</button>
I've tried both approaches and the result looks like this for both: initial look || on Mouse over
EDIT: It's important to mention that I only have Bootstrap 4, no personal stylesheet and no other themes.
This project is in React, so className is used instead of class.