I successfully connected the most recent version of bootstrap.min.css
to my webpage using
<link rel="stylesheet" href="assets/css/bootstrap.min.css">
. Initially, everything was running smoothly. However, I now encountered an issue where my browser is reporting a failure to load bootstrap.min.css.map
.
The link in my stylesheet specifies that bootstrap.min.css
is being linked, not the .map
When I use
<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css">
, everything functions properly.