I am experiencing some strange issues with spacing in different browsers when using Bootstrap.
Firefox is showing the spans correctly, but Chrome and Safari are spanning the items across the full width of the page, which I know is a responsive behavior of Bootstrap but doesn't seem to make sense in this case.
For example, in a simple body like this:
<div class="container-fluid">
<div class="row-fluid">
<div class="span6">
Hello
</div>
<div class="span6">
Bye
</div>
</div>
In Firefox, 'Hello' and 'Bye' are displayed side by side. However, in Chrome and Safari, they are displayed on top of each other on separate lines.
Any thoughts on why this might be happening?
UPDATE
After checking the production version online, I can see that it works correctly in all browsers, including Chrome and Safari.
However, the issue still persists in the local versions. What could be causing this discrepancy?